summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/launcher/AppList.qml9
-rw-r--r--modules/launcher/Content.qml8
2 files changed, 15 insertions, 2 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml
index d5724f8..3175402 100644
--- a/modules/launcher/AppList.qml
+++ b/modules/launcher/AppList.qml
@@ -10,6 +10,7 @@ ListView {
required property int padding
required property string search
+ required property Scope launcher
model: ScriptModel {
values: Apps.fuzzyQuery(root.search)
@@ -26,10 +27,16 @@ ListView {
anchors.bottom: parent.bottom
anchors.margins: root.padding
+ highlightMoveDuration: Appearance.anim.durations.normal
+
+ highlight: StyledRect {
+ radius: Appearance.rounding.normal
+ color: Appearance.alpha(Appearance.colours.m3surfaceContainerHighest, true)
+ }
+
delegate: AppItem {
launcher: root.launcher
}
- // TODO highlight
ScrollBar.vertical: StyledScrollBar {
// Move half out
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml
index 81222b7..6784b0e 100644
--- a/modules/launcher/Content.qml
+++ b/modules/launcher/Content.qml
@@ -37,6 +37,7 @@ Item {
padding: root.padding
search: search.text
+ launcher: root.launcher
}
EmptyIndicator {
@@ -73,6 +74,9 @@ Item {
}
}
+ Keys.onUpPressed: list.decrementCurrentIndex()
+ Keys.onDownPressed: list.incrementCurrentIndex()
+
Keys.onEscapePressed: root.launcher.launcherVisible = false
Connections {
@@ -81,8 +85,10 @@ Item {
function onLauncherVisibleChanged(): void {
if (root.launcher.launcherVisible)
search.forceActiveFocus();
- else
+ else {
search.text = "";
+ list.currentIndex = 0;
+ }
}
}
}