From e04480e5f5fa93c718999f54afbbd85acfd73843 Mon Sep 17 00:00:00 2001 From: Starsam80 Date: Mon, 5 Jun 2017 12:36:30 -0600 Subject: [PATCH] Qt: Add the version to the window title --- Source/Core/DolphinQt2/MainWindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt2/MainWindow.cpp b/Source/Core/DolphinQt2/MainWindow.cpp index 3382cee4c0..1d487ac3c6 100644 --- a/Source/Core/DolphinQt2/MainWindow.cpp +++ b/Source/Core/DolphinQt2/MainWindow.cpp @@ -7,6 +7,8 @@ #include #include +#include "Common/Common.h" + #include "Core/BootManager.h" #include "Core/ConfigManager.h" #include "Core/Core.h" @@ -33,7 +35,7 @@ MainWindow::MainWindow() : QMainWindow(nullptr) { - setWindowTitle(tr("Dolphin")); + setWindowTitle(QString::fromStdString(scm_rev_str)); setWindowIcon(QIcon(Resources::GetMisc(Resources::LOGO_SMALL))); setUnifiedTitleAndToolBarOnMac(true); @@ -347,7 +349,7 @@ void MainWindow::HideRenderWidget() m_render_widget->setParent(nullptr); m_rendering_to_main = false; disconnect(Host::GetInstance(), &Host::RequestTitle, this, &MainWindow::setWindowTitle); - setWindowTitle(tr("Dolphin")); + setWindowTitle(QString::fromStdString(scm_rev_str)); } m_render_widget->hide(); }