Rename start in windowed mode option to be more accurate

This commit is contained in:
Cameron Gutman 2018-11-28 21:46:14 -08:00
parent b97758ef46
commit 094443cf26

View file

@ -462,12 +462,12 @@ Flickable {
spacing: 5
CheckBox {
id: startWindowedCheck
text: "Start Moonlight in windowed mode"
id: startMaximizedCheck
text: "Maximize Moonlight window on startup"
font.pointSize: 12
checked: prefs.startWindowed
checked: !prefs.startWindowed
onCheckedChanged: {
prefs.startWindowed = checked
prefs.startWindowed = !checked
}
}
}