ui: removed us of utf8 circle due to Linux issues

* Use dot.png in status bar again
* use * for out-dated files
This commit is contained in:
Eberhard Graether
2016-04-26 18:36:50 +02:00
parent 3d2d434125
commit 3ef9db3a84
2 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -541,7 +541,7 @@ void QtCodeFile::doUpdateTitleBar()
if ((!FileSystem::exists(m_filePath.str())) ||
(FileSystem::getLastWriteTime(m_filePath) > m_modificationTime))
{
m_title->setText(QString(m_filePath.fileName().c_str()) + " " + QChar(0x25CF));
m_title->setText(QString(m_filePath.fileName().c_str()) + "*");
m_title->setToolTip(QString::fromStdString("out of date: " + m_filePath.str()));
}
else