From 8cceda1cfe53fd1995db28ef40dc3f2815a3a0f2 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 8 Nov 2016 13:23:44 +1300 Subject: [PATCH] Tidy UI text --- interface/src/Application.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index deb703e6e6..0a5e5e1789 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5353,7 +5353,7 @@ void Application::addAssetToWorldInitiate() { if (!_addAssetToWorldMessageBox) { _addAssetToWorldMessageBox = DependencyManager::get()->createMessageBox(OffscreenUi::ICON_INFORMATION, - "Downloading Asset", "Preparing asset for download", QMessageBox::Cancel, QMessageBox::NoButton); + "Downloading Asset", "Preparing asset for download.", QMessageBox::Cancel, QMessageBox::NoButton); } connect(_addAssetToWorldMessageBox, SIGNAL(destroyed()), this, SLOT(onAssetToWorldMessageBoxClosed())); @@ -5377,7 +5377,7 @@ void Application::addAssetToWorld(QString filePath) { return; } - _addAssetToWorldMessageBox->setProperty("text", "Downloading asset file"); + _addAssetToWorldMessageBox->setProperty("text", "Downloading asset file."); if (!DependencyManager::get()->getThisNodeCanWriteAssets()) { QString errorInfo = "Do not have permissions to write to asset server."; @@ -5496,9 +5496,9 @@ void Application::addAssetToWorldAddEntity(QString mapping) { qCDebug(interfaceapp) << "Error downloading asset: " + errorInfo; addAssetToWorldError(errorInfo); } else { - QString successInfo = "Downloaded asset " + mapping + " added to world"; + QString successInfo = "Downloaded asset " + mapping + " added to world."; qCDebug(interfaceapp) << "Downloading asset completed: " + successInfo; - _addAssetToWorldMessageBox->setProperty("text", "Downloading asset completed"); + _addAssetToWorldMessageBox->setProperty("text", successInfo); _addAssetToWorldMessageBox->setProperty("buttons", QMessageBox::Ok); _addAssetToWorldMessageBox->setProperty("defaultButton", QMessageBox::Ok); }