mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-08 04:09:15 -04:00
feat: (Launcher/Spotlight): Updated w/New Settings & QOL features
- New Spotlight toggle to show/hide chips, off by default - Updated blur effects on all launcher inputs and footers - Fixed previous queries resurfacing - Upated Spotlight keyboard navigation - Added functionality to show and shortcut to keybinds from the Launcher tab
This commit is contained in:
@@ -64,6 +64,7 @@ FocusScope {
|
||||
|
||||
sourceComponent: KeybindsTab {
|
||||
parentModal: root.parentModal
|
||||
requestedSearchQuery: root.parentModal?.keybindSearchQuery ?? ""
|
||||
}
|
||||
|
||||
onActiveChanged: {
|
||||
|
||||
@@ -37,6 +37,7 @@ FloatingWindow {
|
||||
property bool isCompactMode: width < 700
|
||||
property bool menuVisible: !isCompactMode
|
||||
property bool enableAnimations: true
|
||||
property string keybindSearchQuery: ""
|
||||
|
||||
signal closingModal
|
||||
|
||||
@@ -73,6 +74,11 @@ FloatingWindow {
|
||||
return sidebar.resolveTabIndex(tabName);
|
||||
}
|
||||
|
||||
function showKeybindsSearch(query: string) {
|
||||
keybindSearchQuery = query || "";
|
||||
showWithTabName("keybinds");
|
||||
}
|
||||
|
||||
function toggleMenu() {
|
||||
enableAnimations = true;
|
||||
menuVisible = !menuVisible;
|
||||
|
||||
Reference in New Issue
Block a user