Skip to content

Commit

Permalink
#1339: log root coordinates and OR offset with mouse debug
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@14323 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 29, 2016
1 parent 0efd30a commit c59a353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gtk_base/gtk_client_window_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1303,7 +1303,7 @@ def _pointer_modifiers(self, event):
modifiers = self._client.mask_to_names(event.state)
buttons = self._event_buttons(event)
v = pointer, modifiers, buttons
mouselog("pointer_modifiers(%s)=%s", event, v)
mouselog("pointer_modifiers(%s)=%s (x_root=%s, y_root=%s, OR_offset=%s)", event, v, event.x_root, event.y_root, self.OR_offset)
return v

def _event_buttons(self, event):
Expand Down

0 comments on commit c59a353

Please sign in to comment.