1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-14 22:42:34 +02:00

Fix disable sdk on debug mode

This commit is contained in:
Elias Steurer 2022-12-17 13:30:08 +01:00
parent e0e02cfcde
commit 40cde43a68

View File

@ -61,7 +61,8 @@ MacWindow::MacWindow(
MacIntegration* macIntegration = new MacIntegration(this);
macIntegration->SetBackgroundLevel(&m_window);
sdk()->start();
if (!debugMode)
sdk()->start();
}
void MacWindow::setVisible(bool show)