diff --git a/src/apps/deskflow-gui/MainWindow.cpp b/src/apps/deskflow-gui/MainWindow.cpp index f59903cb7..6c9033d16 100644 --- a/src/apps/deskflow-gui/MainWindow.cpp +++ b/src/apps/deskflow-gui/MainWindow.cpp @@ -499,14 +499,14 @@ void MainWindow::updateSize() { #ifdef Q_OS_MAC // On mac os the titlebar is part of the height so we need to adjust our Y coord to avoid moving the window up - const auto kTitleBarOffset = 28 + const auto kTitleBarOffset = 28; #else const auto kTitleBarOffset = 0; #endif if (ui->textLog->isVisible()) { setMaximumHeight(16777215); setMaximumWidth(16777215); - setGeometry(x(), y() + kTitleBarOffset , m_expandedSize.width(), m_expandedSize.height()); + setGeometry(x(), y() + kTitleBarOffset, m_expandedSize.width(), m_expandedSize.height()); } else { adjustSize(); // Prevent Resize with log collapsed