Skip to content

Commit

Permalink
Minor fix on Develop Menu that incorrectly displayed a missing WebKit…
Browse files Browse the repository at this point in the history
… error message.
  • Loading branch information
John Harwell committed Oct 29, 2019
1 parent bed9f49 commit 1ca3725
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/GuiQt/BrainBrowserWindow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1795,8 +1795,10 @@ BrainBrowserWindow::developerMenuFlagTriggered(QAction* action)
EventManager::get()->sendEvent(EventUserInterfaceUpdate().getPointer());
EventManager::get()->sendEvent(EventGraphicsUpdateAllWindows().getPointer());
#else
WuQMessageBox::informationOk(this,
"Software was built without Qt WebKit, see src/CMakeLists.txt");
if (enumValue == DeveloperFlagsEnum::DEVELOPER_FLAG_BALSA) {
WuQMessageBox::informationOk(this,
"Software was built without Qt WebKit, BALSA test not available, see src/CMakeLists.txt");
}
#endif
}
else {
Expand Down

0 comments on commit 1ca3725

Please sign in to comment.