diff options
Diffstat (limited to 'modules/launcher/Content.qml')
| -rw-r--r-- | modules/launcher/Content.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index 54cc872..b6d1056 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -74,7 +74,7 @@ Item { topPadding: Appearance.padding.larger bottomPadding: Appearance.padding.larger - placeholderText: qsTr("Type \"%1\" for commands").arg(LauncherConfig.actionPrefix) + placeholderText: qsTr("Type \"%1\" for commands").arg(Config.launcher.actionPrefix) background: null onAccepted: { @@ -83,7 +83,7 @@ Item { if (list.showWallpapers) { Wallpapers.setWallpaper(currentItem.modelData.path); root.visibilities.launcher = false; - } else if (text.startsWith(LauncherConfig.actionPrefix)) { + } else if (text.startsWith(Config.launcher.actionPrefix)) { currentItem.modelData.onClicked(list.currentList); } else { Apps.launch(currentItem.modelData); |