fix(da12): make station-commands menu tooltips visible (backport of the da07 finding)

This commit is contained in:
2026-06-11 13:18:55 -04:00
parent fda18eb9fd
commit 03eb158ab8

View File

@@ -127,6 +127,7 @@ class MainWindow(QMainWindow):
menu_btn = QToolButton(tb)
menu_btn.setText("Station commands ▾")
self.station_menu = QMenu(menu_btn)
self.station_menu.setToolTipsVisible(True) # QMenu hides action tooltips by default
self.act_clock = self.station_menu.addAction("Set Clock…")
self.act_clock.triggered.connect(self._set_clock)
self.act_reboot = self.station_menu.addAction("Reboot Station…")