GNOME Bugzilla – Bug 115507
Ctrl+F1 shouldn't launch help.
Last modified: 2004-12-22 21:47:04 UTC
Pressing Ctrl+F1 is supposed to toggle tooltips, or something like that. It should not launch the help browser as it does here. The accel shown for Help->Contents is F1. It seems the modifier mask for the key-press/release event isn't being checked.
It seem a gtk bug. I'll attach a patch to gtk-demo to reproduce it.
Created attachment 17622 [details] [review] Patch to gtk-demo to reproduce
To reproduce, apply the patch and try to press Ctrl+F1, the Quit menu item will be activated (output on the console). In case it's of any help this is what eggmenu does to setup accels (epiphany is using it and expose the same behavior): guint accel_key = 0; GdkModifierType accel_mods; gtk_accelerator_parse (entries[i].accelerator, &accel_key, &accel_mods); if (accel_key) gtk_accel_map_add_entry (accel_path, accel_key, accel_mods);
Other test case: press ctrl+f1 in gnome-terminal.
*** This bug has been marked as a duplicate of 100439 ***