diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-03 14:32:53 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-03 14:32:53 +1000 |
| commit | 5978db658c541d4acf4de4a14139232f4a57284c (patch) | |
| tree | 754eeff62e09569ead024f89cc638a002a12c923 /config | |
| parent | launcher: fix scrollbar (diff) | |
| download | caelestia-shell-5978db658c541d4acf4de4a14139232f4a57284c.tar.gz caelestia-shell-5978db658c541d4acf4de4a14139232f4a57284c.tar.bz2 caelestia-shell-5978db658c541d4acf4de4a14139232f4a57284c.zip | |
feat: launcher actions
Diffstat (limited to 'config')
| -rw-r--r-- | config/LauncherConfig.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index caa3bc5..2bf465d 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -5,9 +5,11 @@ import QtQuick Singleton { readonly property int maxShown: 8 + readonly property string actionPrefix: ">" readonly property Sizes sizes: Sizes {} component Sizes: QtObject { - property int width: 600 + readonly property int width: 600 + readonly property int itemHeight: 57 } } |