mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-05-19 16:10:35 +00:00
Allow focus to move up to the toolbar from the PC/app grid
This commit is contained in:
@@ -123,6 +123,9 @@ CenteredGridView {
|
|||||||
|
|
||||||
sourceComponent: Item {
|
sourceComponent: Item {
|
||||||
RoundButton {
|
RoundButton {
|
||||||
|
// Don't steal focus from the toolbar buttons
|
||||||
|
focusPolicy: Qt.NoFocus
|
||||||
|
|
||||||
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? -47 : 0
|
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? -47 : 0
|
||||||
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : -60
|
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : -60
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
@@ -146,6 +149,9 @@ CenteredGridView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
RoundButton {
|
RoundButton {
|
||||||
|
// Don't steal focus from the toolbar buttons
|
||||||
|
focusPolicy: Qt.NoFocus
|
||||||
|
|
||||||
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? 47 : 0
|
anchors.horizontalCenterOffset: appIcon.isPlaceholder ? 47 : 0
|
||||||
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : 60
|
anchors.verticalCenterOffset: appIcon.isPlaceholder ? -75 : 60
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|||||||
@@ -17,6 +17,11 @@ ItemDelegate {
|
|||||||
}
|
}
|
||||||
Keys.onUpPressed: {
|
Keys.onUpPressed: {
|
||||||
grid.moveCurrentIndexUp()
|
grid.moveCurrentIndexUp()
|
||||||
|
|
||||||
|
// If we've reached the top of the grid, move focus to the toolbar
|
||||||
|
if (grid.currentItem === this) {
|
||||||
|
nextItemInFocusChain(false).forceActiveFocus(Qt.TabFocus)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Keys.onReturnPressed: {
|
Keys.onReturnPressed: {
|
||||||
clicked()
|
clicked()
|
||||||
|
|||||||
Reference in New Issue
Block a user