fix: status bar message not showing

Permanent spacer widget was preventing statusBar()->showMessage calls
from showing.
This commit is contained in:
talksik
2026-02-07 12:42:48 -08:00
parent 08c8acca12
commit 8c1c5aebf7
+1 -1
View File
@@ -63,7 +63,7 @@ MainWindow::MainWindow(QWidget *parent)
m_statusBar->addWidget(m_currentPathLabel);
// Add spacer to push right-aligned items to the right
m_statusBar->addPermanentWidget(new QLabel(""), 1);
m_statusBar->addWidget(new QLabel(""), 1);
// Ping indicator (green text)
m_pingLabel = new QLabel(this);