Skip to content

Commit

Permalink
Make sure window menu has correct options checked when creating a new…
Browse files Browse the repository at this point in the history
… dataset
  • Loading branch information
RussellGarwood committed Apr 26, 2020
1 parent 079078b commit 7fbcf5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SPIERSedit/src/fileio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ void ApplyDefaultSettings()
MenuMasksChecked = true;
MenuSegsChecked = false;
MenuCurvesChecked = false;
MenuOutputChecked = false;
MenuOutputChecked = true;
MenuToolboxChecked = true;
MenuSliceSelectorChecked = true;
MenuHistSelectedOnly = false;
Expand Down
2 changes: 1 addition & 1 deletion SPIERSedit/src/mainwindowimpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ void MainWindowImpl::Menu_File_New() //create from scratch
nullptr,
"Select source images for dataset",
QString(QStandardPaths::DesktopLocation),
"Images (*.png *.jpg *.jpeg *.bmp *.tif *.tiff)");
"Images (*.png *.jpg *.jpeg *.bmp *.tif *.tiff)");

// If nothing there, cancel
if (files.isEmpty() || files.count() == 0)
Expand Down

0 comments on commit 7fbcf5f

Please sign in to comment.