mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-08 12:13:31 -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:
@@ -12,6 +12,7 @@ Item {
|
||||
property var controller: null
|
||||
property bool hasQuery: false
|
||||
property var rows: []
|
||||
readonly property real bottomInset: Theme.spacingS
|
||||
|
||||
signal itemRightClicked(int index, var item, real mouseX, real mouseY)
|
||||
|
||||
@@ -53,7 +54,11 @@ Item {
|
||||
|
||||
DankListView {
|
||||
id: mainListView
|
||||
anchors.fill: parent
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: root.bottomInset
|
||||
clip: true
|
||||
visible: root.rows.length > 0
|
||||
|
||||
@@ -64,11 +69,6 @@ Item {
|
||||
objectProp: "_rowId"
|
||||
}
|
||||
|
||||
add: null
|
||||
remove: null
|
||||
displaced: null
|
||||
move: null
|
||||
|
||||
delegate: Item {
|
||||
id: delegateRoot
|
||||
required property var modelData
|
||||
@@ -103,7 +103,11 @@ Item {
|
||||
}
|
||||
|
||||
Item {
|
||||
anchors.fill: parent
|
||||
anchors.top: parent.top
|
||||
anchors.left: parent.left
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: root.bottomInset
|
||||
visible: root.hasQuery && root.rows.length === 0
|
||||
|
||||
Row {
|
||||
|
||||
Reference in New Issue
Block a user