Add option to determine if Moonlight launches in full-screen. Fixes #103

This commit is contained in:
Cameron Gutman
2018-11-04 13:57:33 -08:00
parent dda22fd387
commit 1a5a6773ce
4 changed files with 30 additions and 5 deletions
+23
View File
@@ -466,6 +466,29 @@ ScrollView {
}
}
GroupBox {
id: uiSettingsGroupBox
width: (parent.width - parent.padding)
padding: 12
title: "<font color=\"skyblue\">UI Settings</font>"
font.pointSize: 12
Row {
anchors.fill: parent
spacing: 5
CheckBox {
id: startWindowedCheck
text: "<font color=\"white\">Start Moonlight in windowed mode</font>"
font.pointSize: 12
checked: prefs.startWindowed
onCheckedChanged: {
prefs.startWindowed = checked
}
}
}
}
GroupBox {
id: hostSettingsGroupBox
width: (parent.width - parent.padding)