mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Merge pull request #13513 from vladest/double_asset_server_fix
Tablet Asset Server dialog was instantiated twice
This commit is contained in:
commit
65daee2353
1 changed files with 3 additions and 1 deletions
|
@ -6983,7 +6983,9 @@ void Application::showAssetServerWidget(QString filePath) {
|
|||
DependencyManager::get<OffscreenUi>()->show(url, "AssetServer", startUpload);
|
||||
} else {
|
||||
static const QUrl url("hifi/dialogs/TabletAssetServer.qml");
|
||||
tablet->pushOntoStack(url);
|
||||
if (!tablet->isPathLoaded(url)) {
|
||||
tablet->pushOntoStack(url);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue