diff --git a/demo/demo-qtquick2.qml b/demo/demo-qtquick2.qml index dca6ecd..080d332 100644 --- a/demo/demo-qtquick2.qml +++ b/demo/demo-qtquick2.qml @@ -22,16 +22,21 @@ ApplicationWindow { anchors.top: bar.bottom anchors.bottom: parent.bottom currentIndex: bar.currentIndex - ComboBox { - currentIndex: qtquickIndex - model: styles - textRole: "display" - onCurrentIndexChanged: { - if (currentIndex != qtquickIndex) { - widgets.currentIndex = currentIndex; - application.close(); + ColumnLayout { + ComboBox { + currentIndex: qtquickIndex + model: styles + textRole: "display" + onCurrentIndexChanged: { + if (currentIndex != qtquickIndex) { + widgets.currentIndex = currentIndex; + application.close(); + } } } + Image { + source: "logo.svg" + } } RowLayout { TextField {