Reduce status bar left padding to 10px

This commit is contained in:
penguin time
2026-02-10 04:26:42 -07:00
committed by sysadmin
parent 659fb7bd32
commit 276dcae444

View File

@@ -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; }");