From 2f5f53c8e4c2c44b71d0fc3bbc347d74852eab5c Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Fri, 6 Jan 2017 10:28:09 -0800 Subject: [PATCH] cr --- interface/resources/qml/hifi/LetterboxMessage.qml | 5 +++-- scripts/system/libraries/entityList.js | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/resources/qml/hifi/LetterboxMessage.qml b/interface/resources/qml/hifi/LetterboxMessage.qml index 30fd09d7bc..290cff6634 100644 --- a/interface/resources/qml/hifi/LetterboxMessage.qml +++ b/interface/resources/qml/hifi/LetterboxMessage.qml @@ -15,6 +15,7 @@ import "../styles-uit" Item { property alias text: popupText.text + property real radius: hifi.dimensions.borderRadius visible: false id: letterbox anchors.fill: parent @@ -22,13 +23,13 @@ Item { anchors.fill: parent color: "black" opacity: 0.5 - radius: hifi.dimensions.borderRadius + radius: radius } Rectangle { width: Math.max(parent.width * 0.75, 400) height: popupText.contentHeight*1.5 anchors.centerIn: parent - radius: hifi.dimensions.borderRadius + radius: radius color: "white" FiraSansSemiBold { id: popupText diff --git a/scripts/system/libraries/entityList.js b/scripts/system/libraries/entityList.js index fd2cd60b98..085d4f5e27 100644 --- a/scripts/system/libraries/entityList.js +++ b/scripts/system/libraries/entityList.js @@ -3,7 +3,6 @@ var ENTITY_LIST_HTML_URL = Script.resolvePath('../html/entityList.html'); EntityListTool = function(opts) { var that = {}; - var url = ENTITY_LIST_HTML_URL; var webView = new OverlayWebWindow({ title: 'Entity List', source: url, toolWindow: true