From ad585f75595f323507d1314d4ea13dccf4f47d24 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Fri, 17 Apr 2015 10:05:54 -0700 Subject: [PATCH] Fixing NaN reference in test dialog --- interface/resources/qml/TestDialog.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/interface/resources/qml/TestDialog.qml b/interface/resources/qml/TestDialog.qml index 8ce68413b6..69aad4cdc8 100644 --- a/interface/resources/qml/TestDialog.qml +++ b/interface/resources/qml/TestDialog.qml @@ -10,7 +10,6 @@ CustomDialog { objectName: "TestDialog" width: 512 height: 512 - scale: 0.0 Item { id: clientArea @@ -39,7 +38,7 @@ CustomDialog { clip: true text: "test edit" anchors.top: parent.top - anchors.topMargin: parent.titleSize + 12 + anchors.topMargin: 12 } CustomButton { @@ -86,7 +85,6 @@ CustomDialog { } } - }