mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-02 15:55:39 +00:00
19 lines
341 B
QML
19 lines
341 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
ToolButton {
|
|
activeFocusOnTab: true
|
|
|
|
Keys.onReturnPressed: {
|
|
clicked()
|
|
}
|
|
|
|
Keys.onRightPressed: {
|
|
nextItemInFocusChain(true).forceActiveFocus(Qt.TabFocus)
|
|
}
|
|
|
|
Keys.onLeftPressed: {
|
|
nextItemInFocusChain(false).forceActiveFocus(Qt.TabFocus)
|
|
}
|
|
}
|