diff options
| author | Nicholas Bishop <nicholasbishop@gmail.com> | 2007-07-28 00:57:35 +0000 |
|---|---|---|
| committer | nicholasbishop <nicholasbishop@users.sourceforge.net> | 2007-07-28 00:57:35 +0000 |
| commit | 913262aecc06e8a3854a5d91479641420dd999cf (patch) | |
| tree | d56b80dd849efa7779f5a5071bf29d1c4e76cbed /src/ui/widget/spin-slider.cpp | |
| parent | Various small cleanups and optimizations to Paint Bucket tool. (diff) | |
| download | inkscape-913262aecc06e8a3854a5d91479641420dd999cf.tar.gz inkscape-913262aecc06e8a3854a5d91479641420dd999cf.zip | |
Filter effects dialog:
* Added settings widgets for feConvolveMatrix's target attribute
* Changed the order attribute to show both spin widgets on the same row
(bzr r3321)
Diffstat (limited to 'src/ui/widget/spin-slider.cpp')
| -rw-r--r-- | src/ui/widget/spin-slider.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/widget/spin-slider.cpp b/src/ui/widget/spin-slider.cpp index 71c5921a9..e777542e3 100644 --- a/src/ui/widget/spin-slider.cpp +++ b/src/ui/widget/spin-slider.cpp @@ -166,6 +166,12 @@ void DualSpinSlider::set_update_policy(const Gtk::UpdateType u) _s2.set_update_policy(u); } +void DualSpinSlider::remove_scale() +{ + _s1.remove_scale(); + _s2.remove_scale(); +} + } // namespace Widget } // namespace UI } // namespace Inkscape |
