Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
5.9.4
-
None
Description
I have Page delegate for StackView. Page's header item is Pane with Material.elevation. Init item for StackView is ok, but all items, that pushed after init, will not show elevation (it seems that elevation effect has width=0).
On 5.9.3 and 5.10.0 all is good.
main.qml
import QtQuick 2.9 import QtQuick.Controls 2.2 import QtQuick.Controls.Material 2.2 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Tabs") Component { id: comp Page { header: Pane { Material.elevation: 6 height: 200 } } } StackView { id: stackView anchors.fill: parent initialItem: comp } MouseArea { anchors.fill: parent onClicked: stackView.push(comp) } }
Attachments
Issue Links
- duplicates
-
QTBUG-65955 Button is not visible if its background property is set as a Rectangle
- Closed
- resulted from
-
QTBUG-50992 QQC2: Object destroyed during incubation
- Closed