Skip to content

Commit

Permalink
restore paint context for painting the border
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 6, 2024
1 parent 40b9cb9 commit ad25c8c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/client/gtk3/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,11 @@ def draw_widget(self, widget, context) -> bool:
backing = self._backing
if not backing:
return False
context.save()
self.paint_backing_offset_border(backing, context)
self.clip_to_backing(backing, context)
backing.cairo_draw(context)
context.restore()
self.cairo_paint_border(context, None)
if not self._client.server_ok():
self.paint_spinner(context)
Expand Down

0 comments on commit ad25c8c

Please sign in to comment.