summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/object-composite-settings.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2008-01-01 04:40:48 +0000
committermental <mental@users.sourceforge.net>2008-01-01 04:40:48 +0000
commit5a722a35ececc4dbd370d2648531b87461d1d3b5 (patch)
treed625cb086d5000bc63ead2adbd69d0c13ceb749a /src/ui/widget/object-composite-settings.cpp
parentfix update on layer switch and work around some blur-related glitches (diff)
downloadinkscape-5a722a35ececc4dbd370d2648531b87461d1d3b5.tar.gz
inkscape-5a722a35ececc4dbd370d2648531b87461d1d3b5.zip
make blend versus blur more configurable on a case-by-case basis
(bzr r4357)
Diffstat (limited to 'src/ui/widget/object-composite-settings.cpp')
-rw-r--r--src/ui/widget/object-composite-settings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/widget/object-composite-settings.cpp b/src/ui/widget/object-composite-settings.cpp
index 5c38a1370..b38775fc3 100644
--- a/src/ui/widget/object-composite-settings.cpp
+++ b/src/ui/widget/object-composite-settings.cpp
@@ -41,7 +41,7 @@ void ObjectCompositeSettings::_on_desktop_switch(
}
}
-ObjectCompositeSettings::ObjectCompositeSettings(unsigned int verb_code, char const *history_prefix, bool blur_enabled)
+ObjectCompositeSettings::ObjectCompositeSettings(unsigned int verb_code, char const *history_prefix, int flags)
: _verb_code(verb_code),
_blur_tag(Glib::ustring(history_prefix) + ":blur"),
_opacity_tag(Glib::ustring(history_prefix) + ":opacity"),
@@ -51,7 +51,7 @@ ObjectCompositeSettings::ObjectCompositeSettings(unsigned int verb_code, char co
_opacity_adjustment(100.0, 0.0, 100.0, 1.0, 1.0, 0.0),
_opacity_hscale(_opacity_adjustment),
_opacity_spin_button(_opacity_adjustment, 0.01, 1),
- _fe_cb(blur_enabled),
+ _fe_cb(flags),
_fe_vbox(false, 0),
_fe_alignment(1, 1, 1, 1),
_blocked(false)