diff options
| author | Danilo M. <danix@danix.xyz> | 2026-05-03 10:46:00 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-05-03 10:46:00 +0200 |
| commit | 1f7edea0ec0be3ec0e464c2829e4aec0886e28d3 (patch) | |
| tree | 721d4d860e1723585a51baa79902734fcb46a5f6 /ui | |
| parent | 43119b38a8f8a57894936a07d9a66345139e9a4f (diff) | |
| download | publisher-1f7edea0ec0be3ec0e464c2829e4aec0886e28d3.tar.gz publisher-1f7edea0ec0be3ec0e464c2829e4aec0886e28d3.zip | |
feat: complete my-publisher app — all views wired and working
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/main_window.py | 5 |
1 files changed, 5 insertions, 0 deletions
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): |
