From a401c98bf67f24af3778816a0bb09e5416d89583 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Thu, 26 Dec 2024 10:03:24 -0500 Subject: [PATCH] build: fix mac os missing ; --- src/apps/deskflow-gui/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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