Add tooltip to show entire filename.

This commit is contained in:
Ernie Pasveer
2026-01-25 12:35:13 -06:00
parent 2f0921cfd3
commit a035d3e145
+2
View File
@@ -181,6 +181,7 @@ void SeerEditorWidgetSource::showReloadBar (bool flag) {
reloadFilenameLabel->setText("The file \"" + Seer::elideText(sourceArea()->file(),Qt::ElideLeft,elideLength) + "\" has changed on disk. RELOADING...");
reloadFilenameLabel->setToolTip(sourceArea()->file());
reloadToolButton->setFocus(Qt::MouseFocusReason); // Give the reload button the focus.
// Schedule the reload.
@@ -190,6 +191,7 @@ void SeerEditorWidgetSource::showReloadBar (bool flag) {
reloadFilenameLabel->setText("The file \"" + Seer::elideText(sourceArea()->file(),Qt::ElideLeft,elideLength) + "\" has changed on disk.");
reloadFilenameLabel->setToolTip(sourceArea()->file());
reloadToolButton->setFocus(Qt::MouseFocusReason); // Give the reload button the focus.
}