Get modified status directly from database object instead of using window title

This commit is contained in:
Weslly 2017-03-20 23:29:36 -03:00
parent a87fab8d18
commit 18b5b76a80
3 changed files with 16 additions and 5 deletions

View file

@ -519,11 +519,12 @@ void MainWindow::updateWindowTitle()
windowTitle = BaseWindowTitle;
} else {
windowTitle = QString("%1 - %2").arg(customWindowTitlePart, BaseWindowTitle);
if (customWindowTitlePart.right(1) == "*") {
setWindowModified(true);
} else {
setWindowModified(false);
}
}
if (m_ui->tabWidget->isModified(tabWidgetIndex)) {
setWindowModified(true);
} else {
setWindowModified(false);
}
setWindowTitle(windowTitle);