Replace new #ifdef Q_OS_LINUX in main_window.cpp added a month ago

This commit is contained in:
Ilya Fedin 2020-11-07 06:58:10 +04:00 committed by John Preston
parent 876c57dcfb
commit e0de4dbc5e
1 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ void MainWindow::refreshTitleWidget() {
_titleShadow.destroy(); _titleShadow.destroy();
} }
#ifdef Q_OS_LINUX #if defined Q_OS_UNIX && !defined Q_OS_MAC
// setWindowFlag calls setParent(parentWidget(), newFlags), which // setWindowFlag calls setParent(parentWidget(), newFlags), which
// always calls hide() explicitly, we have to show() the window back. // always calls hide() explicitly, we have to show() the window back.
const auto hidden = isHidden(); const auto hidden = isHidden();
@ -378,7 +378,7 @@ void MainWindow::refreshTitleWidget() {
this, this,
[=] { show(); }); [=] { show(); });
} }
#endif // Q_OS_LINUX #endif // Q_OS_UNIX && !Q_OS_MAC
} }
void MainWindow::updateMinimumSize() { void MainWindow::updateMinimumSize() {