mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 07:58:59 +02:00
fixed merge issues
This commit is contained in:
commit
628b97bfc6
3 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,10 @@ FocusScope {
|
||||||
height: 720
|
height: 720
|
||||||
|
|
||||||
property var rootMenu: Menu { objectName:"rootMenu" }
|
property var rootMenu: Menu { objectName:"rootMenu" }
|
||||||
property var point: Qt.point(50, 50)
|
property var point: Qt.point(50, 50);
|
||||||
|
property var eventBridge;
|
||||||
|
signal sendToScript(var message);
|
||||||
|
TabletMenuStack { id: menuPopperUpper }
|
||||||
property string subMenu: ""
|
property string subMenu: ""
|
||||||
property var eventBridge;
|
property var eventBridge;
|
||||||
signal sendToScript(var message);
|
signal sendToScript(var message);
|
||||||
|
|
|
@ -82,9 +82,7 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
function popMenu() {
|
function popMenu() {
|
||||||
console.log("the depth of the stack " + d.depth);
|
|
||||||
if (d.depth) {
|
if (d.depth) {
|
||||||
console.log("trying to pop page from stack");
|
|
||||||
d.pop();
|
d.pop();
|
||||||
}
|
}
|
||||||
if (d.depth) {
|
if (d.depth) {
|
||||||
|
|
|
@ -5745,7 +5745,6 @@ bool Application::displayAvatarAttachmentConfirmationDialog(const QString& name)
|
||||||
|
|
||||||
void Application::toggleRunningScriptsWidget() const {
|
void Application::toggleRunningScriptsWidget() const {
|
||||||
DependencyManager::get<OffscreenUi>()->show(url, "RunningScripts");
|
DependencyManager::get<OffscreenUi>()->show(url, "RunningScripts");
|
||||||
|
|
||||||
//if (_runningScriptsWidget->isVisible()) {
|
//if (_runningScriptsWidget->isVisible()) {
|
||||||
// if (_runningScriptsWidget->hasFocus()) {
|
// if (_runningScriptsWidget->hasFocus()) {
|
||||||
// _runningScriptsWidget->hide();
|
// _runningScriptsWidget->hide();
|
||||||
|
|
Loading…
Reference in a new issue