mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-02 15:55:39 +00:00
13 lines
234 B
QML
13 lines
234 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
MenuItem {
|
|
// Ensure focus can't be given to an invisible item
|
|
enabled: visible
|
|
height: visible ? implicitHeight : 0
|
|
|
|
Keys.onReturnPressed: {
|
|
triggered()
|
|
}
|
|
}
|