Add proxy icon to title bar in OSX

This commit is contained in:
Weslly 2017-03-21 23:01:44 -03:00
parent 93dcf8231f
commit 5776f43b98
3 changed files with 17 additions and 0 deletions

View file

@ -530,6 +530,12 @@ void MainWindow::updateWindowTitle()
windowTitle = QString("%1 - %2").arg(customWindowTitlePart, BaseWindowTitle);
}
if (customWindowTitlePart.isEmpty() || stackedWidgetIndex == 1) {
setWindowFilePath("");
} else {
setWindowFilePath(m_ui->tabWidget->databasePath(tabWidgetIndex));
}
setWindowModified(m_ui->tabWidget->isModified(tabWidgetIndex));
setWindowTitle(windowTitle);