Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.5.0
-
None
-
1c6a510c16b35c937af202f517604620b4a97ff0
Description
Using this example (run via qmlscene):
import QtQuick 2.0 import QtQuick.Controls 1.4 Item { Button { text: "&Hi" enabled: false onClicked: console.log("HI") } }
and hitting "alt + h" on the keyboard will trigger onClicked of the Button. IMO the shortcut should respect the enabled/disabled state like in QPushButton.