mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-16 22:08:48 +02:00
18 lines
569 B
C++
18 lines
569 B
C++
//
|
|
// DialogsManagerScriptingInterface.cpp
|
|
// interface/src/scripting
|
|
//
|
|
// Created by Zander Otavka on 7/17/15.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "DialogsManagerScriptingInterface.h"
|
|
|
|
#include "ui/DialogsManager.h"
|
|
|
|
void DialogsManagerScriptingInterface::toggleAddressBar() {
|
|
QMetaObject::invokeMethod(DependencyManager::get<DialogsManager>().data(), "toggleAddressBar", Qt::QueuedConnection);
|
|
}
|