From 8485c89a0e261919a98f53b4db84e8395cd48606 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Mon, 4 Jan 2016 17:41:03 -0800 Subject: [PATCH] More work on exposing tools to QML overlay windows --- interface/resources/qml/QmlWindow.qml | 1 - interface/resources/qml/controls/DialogBase.qml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/QmlWindow.qml b/interface/resources/qml/QmlWindow.qml index afe165daf4..2d8bf08dc5 100644 --- a/interface/resources/qml/QmlWindow.qml +++ b/interface/resources/qml/QmlWindow.qml @@ -10,7 +10,6 @@ import "styles" VrDialog { id: root - objectName: "topLevelWindow" HifiConstants { id: hifi } title: "QmlWindow" resizable: true diff --git a/interface/resources/qml/controls/DialogBase.qml b/interface/resources/qml/controls/DialogBase.qml index a6616fc731..9fb2a47907 100644 --- a/interface/resources/qml/controls/DialogBase.qml +++ b/interface/resources/qml/controls/DialogBase.qml @@ -5,6 +5,7 @@ import "../styles" Item { id: root + objectName: "topLevelWindow" HifiConstants { id: hifi } implicitHeight: contentImplicitHeight + titleBorder.height + hifi.styles.borderWidth implicitWidth: contentImplicitWidth + hifi.styles.borderWidth * 2