Advertisement
Guest User

gmenu_patch1

a guest
Oct 27th, 2013
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.57 KB | None | 0 0
  1. === modified file 'GMenu/src/applet-entry.c'
  2. --- GMenu/src/applet-entry.c    2013-10-07 14:12:52 +0000
  3. +++ GMenu/src/applet-entry.c    2013-10-24 12:12:31 +0000
  4. @@ -390,6 +390,10 @@
  5.  static gboolean _on_key_pressed_menu (GtkWidget *pMenu, GdkEventKey *pEvent,
  6.     GldiModuleInstance *myApplet)
  7.  {
  8. +   g_print ("GMenu: key pressed: %d %d\n", pEvent->type == GDK_KEY_PRESS, pEvent->type == GDK_KEY_RELEASE)
  9. +   if (pEvent->type != GDK_KEY_PRESS)
  10. +       return FALSE;
  11. +  
  12.     // redirect the signal to the entry
  13.     g_signal_emit_by_name (myData.pEntry, "key-press-event", pEvent, myApplet);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement