1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-04 04:42:05 -04:00

keybinds: auto-focus cheatsheet search

This commit is contained in:
bbedward
2026-02-17 08:44:47 -05:00
parent 34a6bbfb32
commit da437e77fb

View File

@@ -20,7 +20,11 @@ DankModal {
modalHeight: _maxH
onBackgroundClicked: close()
onOpened: {
Qt.callLater(() => modalFocusScope.forceActiveFocus());
Qt.callLater(() => {
modalFocusScope.forceActiveFocus();
if (contentLoader.item?.searchField)
contentLoader.item.searchField.forceActiveFocus();
});
if (!Object.keys(KeybindsService.cheatsheet).length && KeybindsService.cheatsheetAvailable)
KeybindsService.loadCheatsheet();
}
@@ -65,6 +69,7 @@ DankModal {
content: Component {
Item {
anchors.fill: parent
property alias searchField: searchField
Column {
anchors.fill: parent