summary refs log tree commit diff
path: root/resources/qml/dialogs/ImagePackSettingsDialog.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-01-09 00:28:03 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2022-01-09 01:02:25 +0100
commitf1a23355bdd7d2fe08c5efa73ee21ece14979a7f (patch)
tree4ec98d825fcb20c4948e689f119a4e47b979273c /resources/qml/dialogs/ImagePackSettingsDialog.qml
parentWork around images with size 0 in info (diff)
downloadnheko-f1a23355bdd7d2fe08c5efa73ee21ece14979a7f.tar.xz
Port usersettings to qml
Diffstat (limited to 'resources/qml/dialogs/ImagePackSettingsDialog.qml')
-rw-r--r--resources/qml/dialogs/ImagePackSettingsDialog.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml

index d6025f80..fa079855 100644 --- a/resources/qml/dialogs/ImagePackSettingsDialog.qml +++ b/resources/qml/dialogs/ImagePackSettingsDialog.qml
@@ -185,7 +185,7 @@ ApplicationWindow { ToggleButton { ToolTip.text: qsTr("Enables this pack to be used in all rooms") checked: currentPack ? currentPack.isGloballyEnabled : false - onClicked: currentPack.isGloballyEnabled = !currentPack.isGloballyEnabled + onCheckedChanged: currentPack.isGloballyEnabled = checked Layout.alignment: Qt.AlignRight }