Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
5.1.0
-
dev branch - ubuntu
-
813c39f3
Description
The following code generates a warning when the menu is shown:
"Unable to find a renderable master window QtMenuPopupWindow(0x1e1f0e0) when trying to render QtMenuPopupWindow(0x1e1f0e0) ( QRect(67,59 0x0) )."
Also the menu is not drawn properly until the mouse hovers above it.
import QtQuick 2.0 import QtQuick.Controls 1.0 ApplicationWindow { width: 360 height: 360 menuBar: MenuBar { Menu { text: "Edit" MenuItem { text: "Cut" } MenuItem { text: "Copy" } } } }