lines/spacing

This commit is contained in:
David Back 2018-09-06 16:54:58 -07:00
parent 14a3eb4c97
commit b82f6d0bad
3 changed files with 5 additions and 4 deletions

View file

@ -812,7 +812,8 @@ var toolBar = (function () {
}
};
entityListTool.interactiveWindowHidden.addListener(this, deactivateCreateIfDesktopWindowsHidden);
createToolsWindow.interactiveWindowHidden.addListener(this, deactivateCreateIfDesktopWindowsHidden);
createToolsWindow.interactiveWindowHidden.addListener(this, deactivateCreateIfDesktopWindowsHidden);
that.setActive(false);
}

View file

@ -176,4 +176,4 @@ ListView = function(tableId, tableBodyId, tableScrollId, createRowFunction, upda
}
return that;
}
}

View file

@ -19,7 +19,7 @@ EntityListTool = function(shouldUseEditTabletApp) {
var TITLE_OFFSET = 60;
var ENTITY_LIST_WIDTH = 495;
var MAX_DEFAULT_CREATE_TOOLS_HEIGHT = 778;
var entityListWindow = new CreateWindow(
var entityListWindow = new CreateWindow(
Script.resourcesPath() + "qml/hifi/tablet/EditEntityList.qml",
'Entity List',
'com.highfidelity.create.entityListWindow',
@ -34,7 +34,7 @@ EntityListTool = function(shouldUseEditTabletApp) {
y: windowHeight
},
position: {
x: Window.x,
x: Window.x,
y: Window.y + TITLE_OFFSET
}
};