Qt: Add the version to the window title

This commit is contained in:
Starsam80 2017-06-05 12:36:30 -06:00
parent 75d686e2c7
commit e04480e5f5
No known key found for this signature in database
GPG Key ID: 4E48BB48BA7E9026
1 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,8 @@
#include <QIcon>
#include <QMessageBox>
#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();
}