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 c90eee5 commit bfb21a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/client/gtk3/gtk3_client_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,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 bfb21a5

Please sign in to comment.