Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news.d/bugfix/1788.osx.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hide the Start Minimized setting on macOS due to bug in macOS 26.
8 changes: 8 additions & 0 deletions plover/gui_qt/config_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,14 @@ def __init__(self, engine):
keyboard_layout_option.label.hide()
keyboard_layout_option.widget.hide()

# temporary hiding start_minimized setting on macOS due to bug in
# macOS 26, see https://github.com/openstenoproject/plover/issues/1782
if PLATFORM == "mac":
start_minimized_option = option_by_name.get("start_minimized")
if start_minimized_option is not None:
start_minimized_option.label.hide()
start_minimized_option.widget.hide()

# Update dependents.
for option in option_by_name.values():
option.dependents = [
Expand Down
9 changes: 8 additions & 1 deletion plover/gui_qt/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,14 @@ def __init__(self, engine, use_qt_notifications):
self._warn_on_hide_to_tray = not config["start_minimized"]
self._update_machine(config["machine_type"])
self._configured = False
self.set_visible(not config["start_minimized"])

# temporary ignoring start_minimized setting on macOS due to bug in
# macOS 26, see https://github.com/openstenoproject/plover/issues/1782
if PLATFORM == "mac":
self.set_visible(True)
else:
self.set_visible(not config["start_minimized"])

# Process events before starting the engine
# (to avoid display lag at window creation).
QCoreApplication.processEvents()
Expand Down
Loading