Skip to content

Commit

Permalink
Prevent the Buddy List window from intercepting Ctrl+Tab keys
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0- committed Nov 10, 2012
1 parent 319a946 commit fc46a86
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions merge.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ pwm_merge_conversation(PidginBuddyList *gtkblist)
gtk_binding_entry_skip(binding_set, GDK_Page_Down, GDK_CONTROL_MASK);
gtk_binding_entry_skip(binding_set, GDK_KP_Page_Up, GDK_CONTROL_MASK);
gtk_binding_entry_skip(binding_set, GDK_KP_Page_Down, GDK_CONTROL_MASK);
gtk_binding_entry_skip(binding_set, GDK_Tab, GDK_CONTROL_MASK);
gtk_binding_entry_skip(binding_set, GDK_KP_Tab, GDK_CONTROL_MASK);
gtk_binding_entry_skip(binding_set, GDK_ISO_Left_Tab, GDK_CONTROL_MASK);
}


Expand Down

2 comments on commit fc46a86

@LQYMGT
Copy link

@LQYMGT LQYMGT commented on fc46a86 Jul 24, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about ctrl-shift-tab?

@Smile4ever
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.