We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5baadf1 commit 51c296eCopy full SHA for 51c296e
.gitignore
@@ -15,6 +15,7 @@ Source/*.obj
15
Source/*.tlog
16
Source/*.VC.opendb
17
Source/*.VC.db
18
+Source/.cache/
19
Source/.vs/
20
Source/.vscode/
21
.vscode/
Source/GUI/MainWindow.cpp
@@ -732,7 +732,10 @@ void MainWindow::updateStatusBar()
732
733
if (!m_watcher->m_watchListFile.isEmpty())
734
{
735
- tags << m_watcher->m_watchListFile;
+ if (m_watcher->m_watchListFile.size() > 80)
736
+ tags << "..." + m_watcher->m_watchListFile.right(77);
737
+ else
738
+ tags << m_watcher->m_watchListFile;
739
}
740
741
const QSize actualIconSize{icon.actualSize(QSize(100, 100))};
0 commit comments