Reconcile window title styles.

This commit is contained in:
Jim Evins
2016-05-14 21:31:55 -04:00
parent 8d9686430f
commit 003641b8f2
2 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -869,12 +869,11 @@ void MainWindow::setTitle()
{
if ( mModel->isModified() )
{
setWindowTitle( mModel->shortName() + " " + tr("(modified)")
+ " - gLabels" );
setWindowTitle( "gLabels - " + mModel->shortName() + " " + tr("(modified)") );
}
else
{
setWindowTitle( mModel->shortName() + " - gLabels" );
setWindowTitle( "gLabels - " + mModel->shortName() );
}
}
}