-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.9.0
-
None
-
-
e51223c77 (dev), c2e2bbc01 (6.10), 5ae255484 (tqtc/lts-6.8)
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,9 | Propagate attached properties for items within the popup window | dev | qt/qtdeclarative | Status: MERGED | +2 | +1 |
| 686955,2 | Propagate attached properties for items within the popup window | 6.10 | qt/qtdeclarative | Status: MERGED | +2 | 0 |
| 687087,2 | Propagate attached properties for items within the popup window | tqtc/lts-6.8 | qt/tqtc-qtdeclarative | Status: MERGED | +2 | 0 |