-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.9.0
-
None
Minimal working example:
import QtQuick import QtQuick.Controls.Material ApplicationWindow { id: root readonly property string textContent: "0 1 2 3 4 5 6 7 8 9" width: 640 height: 480 visible: true font.family: 'Consolas' Material.theme: Material.Dark Material.accent: "#d6bfff" menuBar: MenuBar { Menu { title: "Popup.Item (propagates)" popupType: Popup.Item Menu { title: textContent Action { text: textContent } } } Menu { title: "Popup.Window (!propagates)" popupType: Popup.Window Menu { title: textContent Action { text: textContent } } } } Menu { id: someMenu popupType: Popup.Window modal: true dim: false Menu { title: textContent Action { text: textContent } } } Button { text: "another Popup.Window (!propagates)" anchors.centerIn: root.contentItem onClicked: { someMenu.open() } } }
- relates to
-
QTBUG-126713 Attached style properties not propagating when popupType is set to popup window
-
- Closed
-
For Gerrit Dashboard: QTBUG-139603 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
672919,5 | Propagate attached properties for items within the popup window | dev | qt/qtdeclarative | Status: NEW | 0 | +1 |