diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-03-08 16:51:51 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-03-08 16:51:51 +0000 |
| commit | 598ef8fe6bb69cc1db1cd4c82d543d5a35b423fa (patch) | |
| tree | 53122b9a5e7b2a9042baaa502b96cc3cefd7ddd3 | |
| parent | Improve EAN13 with guide mark and clean up a bit of code (diff) | |
| parent | Merge remote-tracking branch 'remote/master' (diff) | |
| download | inkscape-598ef8fe6bb69cc1db1cd4c82d543d5a35b423fa.tar.gz inkscape-598ef8fe6bb69cc1db1cd4c82d543d5a35b423fa.zip | |
Merge branch 'master' of gitlab.com:hellozee/inkscape
| -rw-r--r-- | src/ui/widget/filter-effect-chooser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/filter-effect-chooser.cpp b/src/ui/widget/filter-effect-chooser.cpp index c19aa037a..a517bc03e 100644 --- a/src/ui/widget/filter-effect-chooser.cpp +++ b/src/ui/widget/filter-effect-chooser.cpp @@ -22,8 +22,8 @@ SimpleFilterModifier::SimpleFilterModifier(int flags) : _flags( flags ) , _lb_blend(_("Blend mode:")) , _blend(BlendModeConverter, SP_ATTR_INVALID, false) - , _blur( _("Blur (%)" ), 0, 0, 100, 1, 1, 1) - , _opacity(_("Opacity (%)"), 0, 0, 100, 1, 1, 1) + , _blur( _("Blur (%)" ), 0, 0, 100, 1, 0.1, 1) + , _opacity(_("Opacity (%)"), 0, 0, 100, 1, 0.1, 1) { set_name("SimpleFilterModifier"); |
