After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 347022 - ephy-window key_press_event handler eats key-presses without handling them
ephy-window key_press_event handler eats key-presses without handling them
Status: RESOLVED FIXED
Product: epiphany
Classification: Core
Component: General
2.14.x
Other All
: Normal normal
: ---
Assigned To: Epiphany Maintainers
Marco Pesenti Gritti
Depends on:
Blocks:
 
 
Reported: 2006-07-09 08:52 UTC by Christian Neumair
Modified: 2006-07-10 19:28 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Christian Neumair 2006-07-09 08:52:14 UTC
I'm trying to add code like the extra_keybinding handler from Ephy (ephy-window.c) to Nautilus, and I noted that Ephy returns TRUE even if gtk_action_activate fails because the action isn't sensitive. Maybe code like

if (gtk_action_is_sensitive (action)) {
  gtk_action_activate (action);
  return TRUE;
}

would be better?
Comment 1 Christian Persch 2006-07-10 19:28:53 UTC
I fixed this in cvs (HEAD and gnome-14). Thanks for the bug report!