From: Danilo M. Date: Sun, 3 May 2026 08:46:00 +0000 (+0200) Subject: feat: complete my-publisher app — all views wired and working X-Git-Tag: v1.0~7 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=1f7edea0ec0be3ec0e464c2829e4aec0886e28d3;p=publisher.git feat: complete my-publisher app — all views wired and working --- diff --git a/ui/main_window.py b/ui/main_window.py index d6687ea..4366da6 100644 --- a/ui/main_window.py +++ b/ui/main_window.py @@ -31,7 +31,12 @@ class MainWindow(QMainWindow): self.setWindowTitle("my-publisher") self.setMinimumSize(1100, 700) self._build_ui() + self.statusBar().showMessage("my-publisher pronto.") + self.statusBar().setStyleSheet("background:#0f0f1a;color:#555;font-size:10px;") self._refresh_articles() + if self._btn_group: + self._btn_group[0].setChecked(True) + self._stack.setCurrentIndex(self._page_articles) self._setup_watcher() def _build_ui(self):