Fix compilation error on Windows (variable defined only for OSX/Linux used in wrong places)

preferencesAboutTextFull
Craig Watson 9 years ago
parent 6672266db1
commit e690b96eb8
  1. 9
      src/core/UBApplication.cpp

@ -369,11 +369,12 @@ void UBApplication::showMinimized()
{
#ifdef Q_OS_OSX
mainWindow->hide();
bIsMinimized = true;
#elif defined(Q_OS_LINUX)
mainWindow->showMinimized();
bIsMinimized = true;
#endif
bIsMinimized = true;
}
@ -584,16 +585,18 @@ bool UBApplication::eventFilter(QObject *obj, QEvent *event)
{
boardController->controlView()->setMultiselection(false);
if (bIsMinimized) {
#if defined(Q_OS_OSX)
if (bIsMinimized) {
if (mainWindow->isHidden())
mainWindow->show();
bIsMinimized = false;
}
#elif defined(Q_OS_LINUX)
if (bIsMinimized) {
bIsMinimized = false;
UBPlatformUtils::showFullScreen(mainWindow);
#endif
}
#endif
}
return result;

Loading…
Cancel
Save