diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-07-26 23:37:52 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-07-26 23:37:52 +0000 |
| commit | 4075a755483a1e5ac8681a41b5875c1231e9e294 (patch) | |
| tree | f06b2ac02cc41d5197666a75019002008d020b4a /src | |
| parent | add powerstroke initial shot (diff) | |
| download | inkscape-4075a755483a1e5ac8681a41b5875c1231e9e294.tar.gz inkscape-4075a755483a1e5ac8681a41b5875c1231e9e294.zip | |
Fix initial combo box values in filter effects dialog
(bzr r9655)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/filter-effects-dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index 1672c4b69..b2b9fe089 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -176,7 +176,7 @@ public: if (tip_text) { _tt.set_tip(*this, tip_text); } - combo = new ComboBoxEnum<T>(default_value, c, a); + combo = new ComboBoxEnum<T>(default_value, c, a, false); add(*combo); show_all(); } |
