Simplified ScriptSecurity.qml

This commit is contained in:
ksuprynowicz 2024-04-14 21:56:41 +02:00
parent 1887a82b4b
commit 95406c44c6

View file

@ -43,10 +43,6 @@ Rectangle {
console.info("Setting Protect Avatar URLs to:", enabled);
}
function initCheckbox() {
whitelistEnabled.checked = Settings.getValue("private/scriptPermissionGetAvatarURLEnable", true);
}
anchors.fill: parent
width: parent.width;
height: 120;
@ -69,12 +65,10 @@ Rectangle {
height: 60;
CheckBox {
Component.onCompleted: {
initCheckbox();
}
id: whitelistEnabled;
checked: Settings.getValue("private/scriptPermissionGetAvatarURLEnable", true);
anchors.right: parent.right;
anchors.top: parent.top;
anchors.topMargin: 10;