GNOME Bugzilla – Bug 695758
Ctrl+F/Ctrl+S don't focus the search entry
Last modified: 2013-07-04 12:36:47 UTC
devhelp-3.7.91-1.fc19.x86_64 It used to. 1. Launch devhelp 2. Press "down" a couple of times to focus the list of books 3. Press Ctrl+F -> nothing, Ctrl+S -> nothing Both should focus the search entry
Ctrl+F will open the search box to find text in the current page. Ctrl+K is the combination used to focus the main search entry, kind of following the same logic as in web browsers, which use Ctrl+K to focus the search box. I'll resolve it as NOTABUG for now.
Ctrl+S used to work and doesn't anymore. Is there any reason why? That's my mechanical shortcut for devhelp.
(In reply to comment #2) > Ctrl+S used to work and doesn't anymore. Is there any reason why? That's my > mechanical shortcut for devhelp. We decided to stick to Ctrl+K as that was the shortcut used everywhere else... Ctrl+S was kind of attached to 'Save' which we don't need. Actually, I tried to add Ctrl+S to do the same thing as Ctrl+K but removed it as GApplication didn't allow two shortcuts for the same action at that time (not sure now).
There should be a Hint for this change. I didn't find any information for the Shortcuts in Devhelp (except the Page Shortcuts for printing or search in the actual tab). I think a Tooltip above the Search-Entry will make it. Something like this gtk_widget_set_tooltip_text(self->priv->entry, "Shortcut: CTRL-K"); Is a implementation of Mallard planned? Maybe i can help with this issue.
It would be better to revert the shortcut everybody is used to, before anther binding is added.
Can't just add a second action? focus-search-2 and set that to Ctrl-S, please
(In reply to comment #6) > Can't just add a second action? focus-search-2 and set that to Ctrl-S, please Yeah, did that, named 'focus-search-alt', which maps to Ctrl+S. Pushed to git master.