not attempt to show translated globalshortcut description cuz they can't be changed

This commit is contained in:
end-4
2025-07-17 15:28:31 +07:00
parent 8a4f2f2851
commit 158428e63e
14 changed files with 38 additions and 37 deletions
+3 -3
View File
@@ -586,7 +586,7 @@ Scope {
GlobalShortcut {
name: "barToggle"
description: Translation.tr("Toggles bar on press")
description: "Toggles bar on press"
onPressed: {
GlobalStates.barOpen = !GlobalStates.barOpen;
@@ -595,7 +595,7 @@ Scope {
GlobalShortcut {
name: "barOpen"
description: Translation.tr("Opens bar on press")
description: "Opens bar on press"
onPressed: {
GlobalStates.barOpen = true;
@@ -604,7 +604,7 @@ Scope {
GlobalShortcut {
name: "barClose"
description: Translation.tr("Closes bar on press")
description: "Closes bar on press"
onPressed: {
GlobalStates.barOpen = false;