mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-17 09:37:54 +02:00
CR fixes
This commit is contained in:
parent
4b2e0765db
commit
b1884b0841
3 changed files with 5 additions and 4 deletions
|
@ -612,11 +612,12 @@ var toolBar = (function () {
|
|||
} else {
|
||||
closeExistingDialogWindow();
|
||||
var qmlPath = Script.resourcesPath() + "qml/hifi/tablet/New" + entityType + "Window.qml";
|
||||
var DIALOG_WINDOW_SIZE = { x: 500, y: 300 };
|
||||
dialogWindow = Desktop.createWindow(qmlPath, {
|
||||
title: "New " + entityType + " Entity",
|
||||
flags: Desktop.ALWAYS_ON_TOP | Desktop.CLOSE_BUTTON_HIDES,
|
||||
presentationMode: Desktop.PresentationMode.NATIVE,
|
||||
size: { x: 500, y: 300 },
|
||||
size: DIALOG_WINDOW_SIZE,
|
||||
visible: true
|
||||
});
|
||||
dialogWindow.fromQml.connect(fromQml);
|
||||
|
|
Loading…
Reference in a new issue