Skip to content

Commit

Permalink
always update spinner flag, even with no backing
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@9265 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 6, 2015
1 parent bb50fb9 commit 8ccbec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpra/client/gl/gtk2/gl_client_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ def set_alpha(self):

def spinner(self, ok):
b = self._backing
if not b or not b._backing or not self.can_have_spinner():
if not b or not self.can_have_spinner():
return
b.paint_spinner = not ok
if b.paint_screen:
if not b._backing or not b.paint_screen:
b.gl_expose_event(self._backing._backing, "spinner: fake event")
w, h = self.get_size()
self.queue_draw(0, 0, w, h)
Expand Down

0 comments on commit 8ccbec3

Please sign in to comment.