summary refs log tree commit diff
path: root/resources
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-09-01 13:25:11 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-09-01 13:25:11 +0200
commite144c5741f36a27b4df44804db48a77446bcd75c (patch)
tree8d529a9c31058c275376a5abb86f91e497fbf11b /resources
parentUnset the transient parent on separate chat windows (diff)
downloadnheko-e144c5741f36a27b4df44804db48a77446bcd75c.tar.xz
Implement space stickers & emoji
Diffstat (limited to 'resources')
-rw-r--r--resources/qml/dialogs/ImagePackSettingsDialog.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/qml/dialogs/ImagePackSettingsDialog.qml b/resources/qml/dialogs/ImagePackSettingsDialog.qml

index 24f70f68..2bbcfe54 100644 --- a/resources/qml/dialogs/ImagePackSettingsDialog.qml +++ b/resources/qml/dialogs/ImagePackSettingsDialog.qml
@@ -105,6 +105,7 @@ ApplicationWindow { required property string displayName required property bool fromAccountData required property bool fromCurrentRoom + required property bool fromSpace required property string statekey title: displayName @@ -113,6 +114,8 @@ ApplicationWindow { return qsTr("Private pack"); else if (fromCurrentRoom) return qsTr("Pack from this room"); + else if (fromSpace) + return qsTr("Pack from parent community"); else return qsTr("Globally enabled pack"); }