This commit is contained in:
howard-stearns 2017-01-06 10:28:09 -08:00
parent b149fa3d79
commit 2f5f53c8e4
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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