Add preference and tweak connection warning

This commit is contained in:
Cameron Gutman
2019-03-18 20:21:52 -07:00
parent 202a643e5a
commit f624a1817e
5 changed files with 31 additions and 2 deletions
+10
View File
@@ -476,6 +476,16 @@ Flickable {
prefs.startWindowed = !checked
}
}
CheckBox {
id: connectionWarningsCheck
text: "Show connection quality warnings"
font.pointSize: 12
checked: prefs.connectionWarnings
onCheckedChanged: {
prefs.connectionWarnings = checked
}
}
}
}
}