diff options
| author | Nicholas Bishop <nicholasbishop@gmail.com> | 2007-08-12 09:35:38 +0000 |
|---|---|---|
| committer | nicholasbishop <nicholasbishop@users.sourceforge.net> | 2007-08-12 09:35:38 +0000 |
| commit | e85ccdf642c13d03eb1ea758bfcb534e5023f63b (patch) | |
| tree | 8092bdbe87ae7ab7de6d59fa1e213fac06dd1b46 /src/ui | |
| parent | Filter effects dialog: (diff) | |
| download | inkscape-e85ccdf642c13d03eb1ea758bfcb534e5023f63b.tar.gz inkscape-e85ccdf642c13d03eb1ea758bfcb534e5023f63b.zip | |
Filter effects dialog:
* Changed SPFeTurbulence/FilterTurbulence to use an enum for the type field
* Added type setting to the filter dialog
(bzr r3454)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/filter-effects-dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index c871d447e..24ba5cfc8 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -1820,6 +1820,7 @@ void FilterEffectsDialog::init_settings_widgets() _settings->type(NR_FILTER_TURBULENCE); _settings->add_checkbutton(SP_ATTR_STITCHTILES, _("Stitch Tiles"), "stitch", "noStitch"); + _settings->add_combo(SP_ATTR_TYPE, _("Type"), TurbulenceTypeConverter); _settings->add_dualspinslider(SP_ATTR_BASEFREQUENCY, _("Base Frequency"), 0, 100, 1, 0.01, 1); _settings->add_spinslider(SP_ATTR_NUMOCTAVES, _("Octaves"), 1, 10, 1, 1, 0); _settings->add_spinslider(SP_ATTR_SEED, _("Seed"), 0, 1000, 1, 1, 0); |
