From 276dcae444ffd7809d05475ab7b4ce8f29e89720 Mon Sep 17 00:00:00 2001 From: penguin time Date: Tue, 10 Feb 2026 04:26:42 -0700 Subject: [PATCH] Reduce status bar left padding to 10px --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index c8527fc..3ac6d4d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -348,6 +348,7 @@ void MainWindow::createMenus() { void MainWindow::createStatusBar() { m_statusLabel = new QLabel("Ready"); + m_statusLabel->setContentsMargins(10, 0, 0, 0); statusBar()->addWidget(m_statusLabel, 1); statusBar()->setStyleSheet("QStatusBar { background: #252526; color: #858585; }");