summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 20354c5)
raw | patch | inline | side by side (parent: 20354c5)
author | Craig Marshall <craig9@gmail.com> | |
Tue, 28 Sep 2010 21:08:28 +0000 (22:08 +0100) | ||
committer | Craig Marshall <craig9@gmail.com> | |
Tue, 28 Sep 2010 21:08:28 +0000 (22:08 +0100) |
src/extension/effect.cpp | patch | blob | history |
index afc0668a9eb967eff6dbe7429b2281903a4198b6..9a22c07b7c4e3ed809deef3e3170586cd6662336 100644 (file)
--- a/src/extension/effect.cpp
+++ b/src/extension/effect.cpp
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);