Merge main-dev.qml and main.qml

This commit is contained in:
Michael Ehrenreich
2023-02-15 02:20:35 +01:00
parent df27fb0eb4
commit 097c149a3c
3 changed files with 10 additions and 8 deletions

View File

@@ -1,5 +1,10 @@
import QtQuick
LightControlWindow {
Component.onCompleted: showFullScreen()
Component.onCompleted: {
if (__windowed)
showNormal();
else
showFullScreen();
}
}