Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.5.1
-
None
Description
If the window contains a headerview with default settings a dropdown on the same window wont open anymore unless columns made not resizable.
import QtQuick import QtQuick.Window import QtQuick.Controls Window { width: 640 height: 480 visible: true ComboBox { model: ["1","2","3"] } HorizontalHeaderView { model: ["1","2","3"] // resizableColumns: false } }