diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/LauncherConfig.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/LauncherConfig.qml b/config/LauncherConfig.qml index 2bf465d..18489f7 100644 --- a/config/LauncherConfig.qml +++ b/config/LauncherConfig.qml @@ -5,11 +5,14 @@ import QtQuick Singleton { readonly property int maxShown: 8 + readonly property int maxWallpapers: 9 // Warning: even numbers look bad readonly property string actionPrefix: ">" readonly property Sizes sizes: Sizes {} component Sizes: QtObject { - readonly property int width: 600 + readonly property int itemWidth: 600 readonly property int itemHeight: 57 + readonly property int wallpaperWidth: 280 + readonly property int wallpaperHeight: 200 } } |