Skip to content

Commit

Permalink
#3070 start with seamless active on MS Windows and MacOS
Browse files Browse the repository at this point in the history
just auto-select remote host
  • Loading branch information
totaam committed Apr 5, 2021
1 parent 16bdb5e commit 45d69e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xpra/gtk_common/start_gui.py
Expand Up @@ -230,7 +230,6 @@ def do_quit(self):
def populate_menus(self):
localhost = self.localhost_btn.get_active()
if (OSX or WIN32) and localhost:
self.shadow_btn.set_active(True)
self.display_box.hide()
else:
self.display_box.show()
Expand Down Expand Up @@ -496,6 +495,9 @@ def main(): # pragma: no cover
register_os_signals(gui.app_signal)
ready()
gui.populate_menus()
gui.session_toggled()
if WIN32 or OSX:
gui.remote_btn.set_active(True)
gui.show()
gui.present()
Gtk.main()
Expand Down

0 comments on commit 45d69e1

Please sign in to comment.