From 8c1c5aebf7fd2eda3e2edf4c26172e06040743cb Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 7 Feb 2026 12:42:48 -0800 Subject: [PATCH] fix: status bar message not showing Permanent spacer widget was preventing statusBar()->showMessage calls from showing. --- src/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index d75d9ff..bdf8d89 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -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);