Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
5.1.0 Beta 1
-
None
-
1125a07c68b9727899f4a1fc54277ea02a79c39e
Description
Demonstrated below. There's a toolbar there, but it's drawn beneath the red rectangle.
import QtQuick 2.1 import QtQuick.Controls 1.0 ApplicationWindow { width: 640 height: 480 toolBar: ToolBar { ToolButton { anchors.verticalCenter: parent.verticalCenter text: 'Button' } } Rectangle { y: -200 width: parent.width height: 1000 color: 'red' } }