Skip to content

Commit

Permalink
backwards compatibility: default cursor may not be set!
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@15568 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 11, 2017
1 parent 14a5115 commit bc095a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gl/gl_window_backing_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def draw_border(self):
glEnd()

def set_cursor_data(self, cursor_data):
if not cursor_data or len(cursor_data)==1:
if (not cursor_data or len(cursor_data)==1) and self.default_cursor_data:
cursor_data = ["raw"] + self.default_cursor_data
if not cursor_data:
return
Expand Down

0 comments on commit bc095a0

Please sign in to comment.