diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-06-18 06:36:04 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-06-18 06:36:04 +0000 |
| commit | d960c55b5c993f9d43757a0a0b42a1fc8039c072 (patch) | |
| tree | cf905151a4d482d26ea2b694dc3023cc2d41c012 /src/extension/prefdialog.cpp | |
| parent | LPEItem enabling/disabling: rewrite mechanism to be more robust. the previous... (diff) | |
| download | inkscape-d960c55b5c993f9d43757a0a0b42a1fc8039c072.tar.gz inkscape-d960c55b5c993f9d43757a0a0b42a1fc8039c072.zip | |
Extensions. Fix for Bug #433860 (Live preview doesn't work after updating the values many times).
Fixed bugs:
- https://launchpad.net/bugs/433860
(bzr r13430)
Diffstat (limited to 'src/extension/prefdialog.cpp')
| -rw-r--r-- | src/extension/prefdialog.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/extension/prefdialog.cpp b/src/extension/prefdialog.cpp index 1b657f644..d1f83701f 100644 --- a/src/extension/prefdialog.cpp +++ b/src/extension/prefdialog.cpp @@ -212,6 +212,9 @@ PrefDialog::preview_toggle (void) { void PrefDialog::param_change (void) { if (_exEnv != NULL) { + if (!_effect->loaded()) { + _effect->set_state(Extension::STATE_LOADED); + } _timersig.disconnect(); _timersig = Glib::signal_timeout().connect(sigc::mem_fun(this, &PrefDialog::param_timer_expire), 250, /* ms */ |
