Commit e690b96e authored by Craig Watson's avatar Craig Watson

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

parent 6672266d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment