Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ApplicationLibCode/UserInterface/RiuMainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ RiuMainWindow::RiuMainWindow()
createMenus();
createToolBars();
createDockPanels();
// Pre-populate the Windows menu so it is not empty on creation. On macOS, the native menu bar
// hides empty menus, preventing the aboutToShow signal from ever firing.
slotBuildWindowActions();

setAcceptDrops( true );

Expand Down
3 changes: 3 additions & 0 deletions ApplicationLibCode/UserInterface/RiuPlotMainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ RiuPlotMainWindow::RiuPlotMainWindow()
createMenus();
createToolBars();
createDockPanels();
// Pre-populate the Windows menu so it is not empty on creation. On macOS, the native menu bar
// hides empty menus, preventing the aboutToShow signal from ever firing.
slotBuildWindowActions();

setAcceptDrops( true );

Expand Down
Loading