diff options
| author | Nicholas Bishop <nicholasbishop@gmail.com> | 2007-07-27 21:49:35 +0000 |
|---|---|---|
| committer | nicholasbishop <nicholasbishop@users.sourceforge.net> | 2007-07-27 21:49:35 +0000 |
| commit | 2ffbf8110ebb89f00363b9f5f63be885a0d6da1c (patch) | |
| tree | 6ae8e3a02508e5de7af0ffe1d9d53379ffe983d4 /src/ui/dialog | |
| parent | Adding a sample file demonstrating the use of tref to share/examples. (diff) | |
| download | inkscape-2ffbf8110ebb89f00363b9f5f63be885a0d6da1c.tar.gz inkscape-2ffbf8110ebb89f00363b9f5f63be885a0d6da1c.zip | |
Filter effects dialog:
* For the Order attribute of feConvolveMatrix, show only the spin control, not the slider
(bzr r3318)
Diffstat (limited to 'src/ui/dialog')
| -rw-r--r-- | src/ui/dialog/filter-effects-dialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index 7e460af37..3fc4e0ec6 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -1153,7 +1153,8 @@ void FilterEffectsDialog::init_settings_widgets() ConvolveMatrix* convmat = _settings->add(SP_ATTR_KERNELMATRIX, _("Kernel")); order->signal_value_changed().connect( sigc::bind(sigc::mem_fun(*convmat, &ConvolveMatrix::update_direct), this)); - order->set_update_policy(Gtk::UPDATE_DISCONTINUOUS); + order->get_spinslider1().remove_scale(); + order->get_spinslider2().remove_scale(); _settings->add(SP_ATTR_DIVISOR, _("Divisor"), 0.01, 10, 1, 0.01, 1); _settings->add(SP_ATTR_BIAS, _("Bias"), -10, 10, 1, 0.01, 1); |
