Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.9.0
-
None
-
2e8c6a58e2b5691f5fba3f8f10125a5fee14ea05
Description
import QtQuick 2.7 import QtQuick.Controls 2.2 ApplicationWindow { width: 360 height: 360 visible: true ComboBox { editable: true Keys.onPressed: console.log(event.key) // not called } }