Skip to content

Commit

Permalink
#4040: oops Gdk windows can't be closed, just hide it
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 11, 2023
1 parent 5943a19 commit 9982d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/platform/darwin/gl_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def check_support(self, force_enable:bool=False) -> dict[str,Any]:
tmp = GDKWindow(window_type=Gdk.WindowType.TEMP, title="tmp-opengl-check")
with self.get_paint_context(tmp):
i.update(check_PyOpenGL_support(force_enable))
tmp.close()
tmp.hide()
return i

def _get_pfa(self, attr, screen):
Expand Down

0 comments on commit 9982d73

Please sign in to comment.