Skip to content

Commit

Permalink
#3981 minimal fix for default-cursor-data parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Sep 6, 2023
1 parent 7e2983c commit b52b99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/client/gl/gl_window_backing_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ def validate_cursor(self) -> bool:

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

0 comments on commit b52b99a

Please sign in to comment.