From 55bf70991bd7dab97acda33836b9bb600b6a82b7 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 9 May 2018 18:34:42 -0700 Subject: [PATCH] cleanup wording and formatting for version in window title --- interface/src/Application.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index d158b4b054..4239cb2f2c 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -6188,7 +6188,8 @@ void Application::updateWindowTitle() const { auto nodeList = DependencyManager::get(); auto accountManager = DependencyManager::get(); - QString buildVersion = " (build " + applicationVersion() + ")"; + QString buildVersion = " - " + + (BuildInfo::STABLE_BUILD == "1" ? QString("Version") : QString("Build")) + " " + applicationVersion(); QString loginStatus = accountManager->isLoggedIn() ? "" : " (NOT LOGGED IN)";