diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2015-01-07 11:59:18 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2015-01-07 11:59:18 +0000 |
| commit | 0c38c545822f09784ad2875ff842339749da3cef (patch) | |
| tree | d8b3bb6e744579a8f55b250e977a1dee288fff35 /src | |
| parent | Rejection sampling to avoid indeterminate gradients in feTurbulence. (diff) | |
| download | inkscape-0c38c545822f09784ad2875ff842339749da3cef.tar.gz inkscape-0c38c545822f09784ad2875ff842339749da3cef.zip | |
Preferences. Fix for Bug #1401993 (Keyboard shortcut editor throws together extensions and filters).
Fixed bugs:
- https://launchpad.net/bugs/1401993
(bzr r13845)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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) { |
