summaryrefslogtreecommitdiffstats
path: root/src/extension/effect.cpp
diff options
context:
space:
mode:
authorCraig Marshall <craig9@gmail.com>2010-09-28 21:08:28 +0000
committerCraig Marshall <craig9@gmail.com>2010-09-28 21:08:28 +0000
commit07267e4cc412a6d575c8c9949d27a05503731d58 (patch)
tree6fd2eea4f97533a51830eb7a346355ccb58c03ba /src/extension/effect.cpp
parentUpdated translation (diff)
downloadinkscape-07267e4cc412a6d575c8c9949d27a05503731d58.tar.gz
inkscape-07267e4cc412a6d575c8c9949d27a05503731d58.zip
Help files no longer get registered as a recently used extension
Fixed bugs: - https://launchpad.net/bugs/600671 (bzr r9799)
Diffstat (limited to 'src/extension/effect.cpp')
-rw-r--r--src/extension/effect.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp
index afc0668a9..9a22c07b7 100644
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
@@ -295,6 +295,19 @@ Effect::effect (Inkscape::UI::View::View * doc)
void
Effect::set_last_effect (Effect * in_effect)
{
+ gchar const * verb_id = in_effect->get_verb()->get_id();
+ gchar const * help_id_prefix = "org.inkscape.help.";
+
+ // We don't want these "effects" to register as the last effect,
+ // this wouldn't be helpful to the user who selects a real effect,
+ // then goes to the help file (implemented as an effect), then goes
+ // back to the effect, only to see it written over by the help file
+ // selection.
+
+ // This snippet should fix this bug:
+ // https://bugs.launchpad.net/inkscape/+bug/600671
+ if (strncmp(verb_id, help_id_prefix, strlen(help_id_prefix)) == 0) return;
+
if (in_effect == NULL) {
Inkscape::Verb::get(SP_VERB_EFFECT_LAST)->sensitive(NULL, false);
Inkscape::Verb::get(SP_VERB_EFFECT_LAST_PREF)->sensitive(NULL, false);