Skip to content

Commit

Permalink
was using wrong arguments (not used since overriden?)
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@21750 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 20, 2019
1 parent b551cb2 commit 5f85a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/client_window_base.py
Expand Up @@ -684,7 +684,7 @@ def spinner(self, _ok):
#with normal windows, we just queue a draw request
#and let the expose event paint the spinner
w, h = self.get_size()
self.queue_draw(self, 0, 0, w, h)
self.queue_draw(0, 0, w, h)

def can_have_spinner(self):
if self._backing is None:
Expand Down

0 comments on commit 5f85a54

Please sign in to comment.