11 lines
167 B
QML
11 lines
167 B
QML
import QtQuick
|
|
|
|
LightControlWindow {
|
|
Component.onCompleted: {
|
|
if (__windowed)
|
|
showNormal();
|
|
else
|
|
showFullScreen();
|
|
}
|
|
}
|