From d6a49439b8efc2b2ad3163ed6a1fc2a6832f4623 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Tue, 15 Sep 2020 15:57:34 +1200 Subject: [PATCH] Fix "Serverless" capitalization in title bar --- interface/src/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index d86745a8b9..c02ac4ceb3 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -7110,9 +7110,9 @@ void Application::updateWindowTitle() const { QString currentPlaceName; if (isServerlessMode()) { if (isInErrorState) { - currentPlaceName = "serverless: " + nodeList->getDomainHandler().getErrorDomainURL().toString(); + currentPlaceName = "Serverless: " + nodeList->getDomainHandler().getErrorDomainURL().toString(); } else { - currentPlaceName = "serverless: " + DependencyManager::get()->getDomainURL().toString(); + currentPlaceName = "Serverless: " + DependencyManager::get()->getDomainURL().toString(); } } else { currentPlaceName = DependencyManager::get()->getDomainURL().host();