diff options
| author | Jabiertxof <jtx@jtx> | 2017-05-05 23:12:19 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx> | 2017-05-05 23:12:19 +0000 |
| commit | a55c7719ab91153f3bfa039618017acb5465a58f (patch) | |
| tree | b6ac732b1caeea71ff256a8906a7cdf4c22f59ab /src/live_effects/parameter/text.cpp | |
| parent | Update to trunk (diff) | |
| parent | LPE widget refactor. Improvement to not update on same value (diff) | |
| download | inkscape-a55c7719ab91153f3bfa039618017acb5465a58f.tar.gz inkscape-a55c7719ab91153f3bfa039618017acb5465a58f.zip | |
Update to trunk
(bzr r13645.1.175)
Diffstat (limited to '')
| -rw-r--r-- | src/live_effects/parameter/text.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/live_effects/parameter/text.cpp b/src/live_effects/parameter/text.cpp index 4062a4dc7..d633666aa 100644 --- a/src/live_effects/parameter/text.cpp +++ b/src/live_effects/parameter/text.cpp @@ -131,6 +131,9 @@ TextParam::param_newWidget() void TextParam::param_setValue(const Glib::ustring newvalue) { + if (value != newvalue) { + param_effect->upd_params = true; + } value = newvalue; if (!_hide_canvas_text) { sp_canvastext_set_text (canvas_text, newvalue.c_str()); |
