From 0c38c545822f09784ad2875ff842339749da3cef Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Wed, 7 Jan 2015 12:59:18 +0100 Subject: Preferences. Fix for Bug #1401993 (Keyboard shortcut editor throws together extensions and filters). Fixed bugs: - https://launchpad.net/bugs/1401993 (bzr r13845) --- src/ui/dialog/inkscape-preferences.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 8d507d037..0ea6cf082 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -1746,6 +1746,10 @@ void InkscapePreferences::onKBListKeyboardShortcuts() // Find this group in the tree Glib::ustring group = verb->get_group() ? _(verb->get_group()) : _("Misc"); + Glib::ustring verb_id = verb->get_id(); + if (verb_id .compare(0,26,"org.inkscape.effect.filter") == 0) { + group = _("Filters"); + } Gtk::TreeStore::iterator iter_group; bool found = false; while (path) { -- cgit v1.2.3