brightness: add desc for shortcuts

This commit is contained in:
2 * r + 2 * t 2025-06-19 15:52:11 +10:00
parent 44fefc11b2
commit e928b96a95

View file

@ -63,11 +63,13 @@ Singleton {
CustomShortcut { CustomShortcut {
name: "brightnessUp" name: "brightnessUp"
description: "Increase brightness"
onPressed: root.increaseBrightness() onPressed: root.increaseBrightness()
} }
CustomShortcut { CustomShortcut {
name: "brightnessDown" name: "brightnessDown"
description: "Decrease brightness"
onPressed: root.decreaseBrightness() onPressed: root.decreaseBrightness()
} }