-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.8.3, 6.10.0
-
None
Tested and affected styles:
- Fusion
- FluentWinUI3
- Material
Here's a minimum example to reproduce this issue:
import QtQuick import QtQuick.Controls Window { width: 300 height: 400 visible: true title: "Popup Menus" Menu { id: menu popupType: Popup.Window MenuItem { text: "AL-1S" } MenuItem { text: "ABI-Eshuh" } Menu { title: "YoRHa" MenuItem { text: "2B" } MenuItem { text: "9S" } MenuItem { text: "A2" } } } Column { anchors.centerIn: parent Button { text: "Internal Menu" onClicked: { menu.popupType = Popup.Item; menu.popup(); } } Button { text: "External Menu" onClicked: { menu.popupType = Popup.Window; menu.popup(); } } } }
- relates to
-
QTBUG-139024 Menu background shadows are cut off with popupType: Window
-
- Reported
-