Skip to content

Commit

Permalink
using the 'splashscreen' type hint keeps the window above others on m…
Browse files Browse the repository at this point in the history
…acos

this is a problem because it then hides the ssh dialogs
  • Loading branch information
totaam committed Jul 28, 2021
1 parent 849cffb commit 91bdd98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xpra/client/gtk3/splash_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def __init__(self):
self.set_focus_on_map(False)
self.set_skip_pager_hint(True)
self.set_skip_taskbar_hint(True)
self.set_type_hint(Gdk.WindowTypeHint.SPLASHSCREEN)
if not OSX:
self.set_type_hint(Gdk.WindowTypeHint.SPLASHSCREEN)
vbox = Gtk.VBox()
hbox = Gtk.HBox(homogeneous=False)
icon = get_icon_pixbuf("xpra.png")
Expand Down

0 comments on commit 91bdd98

Please sign in to comment.