Skip to content

Commit

Permalink
#567 add swap modifier logging
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@6422 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 9, 2014
1 parent 742df0a commit f00d660
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/xpra/platform/darwin/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def mask_to_names(self, mask):
meta_on = bool(mask & gtk.gdk.META_MASK)
meta_set = self.meta_modifier in names
control_set = self.control_modifier in names
log("mask_to_names names=%s, meta_on=%s, meta_set=%s, control_set=%s", names, meta_on, meta_set, control_set)
if meta_on and not control_set:
log("mask_to_names swapping meta for control: %s for %s", self.meta_modifier, self.control_modifier)
names.append(self.control_modifier)
Expand Down

0 comments on commit f00d660

Please sign in to comment.