Merge pull request #6926 from jherico/qml

Fix overlay message dialog
This commit is contained in:
Howard Stearns 2016-01-25 13:49:34 -08:00
commit 5171ec93a9

View file

@ -30,7 +30,6 @@ FocusScope {
QtObject {
id: d
readonly property var messageDialogBuilder: Component { MessageDialog { } }
function findChild(item, name) {
for (var i = 0; i < item.children.length; ++i) {
@ -209,6 +208,7 @@ FocusScope {
onHeightChanged: repositionAll();
onWidthChanged: repositionAll();
Component { id: messageDialogBuilder; MessageDialog { } }
function messageBox(properties) {
return messageDialogBuilder.createObject(desktop, properties);
}