summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2019-10-21 00:15:00 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2019-10-21 00:15:00 +0000
commit966430dfc94b1552d3dbf6168caeddcf30d0f21c (patch)
treedd7a00969acfa3e6c0aab2581f89fa9d8bc2e319 /src/ui
parentCI: Store artifacts for test job (diff)
downloadinkscape-966430dfc94b1552d3dbf6168caeddcf30d0f21c.tar.gz
inkscape-966430dfc94b1552d3dbf6168caeddcf30d0f21c.zip
Remove isolate check. Need to find a way to isolate all containers
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/widget/filter-effect-chooser.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/ui/widget/filter-effect-chooser.cpp b/src/ui/widget/filter-effect-chooser.cpp
index fc5adbb59..d0442bddd 100644
--- a/src/ui/widget/filter-effect-chooser.cpp
+++ b/src/ui/widget/filter-effect-chooser.cpp
@@ -74,13 +74,21 @@ SimpleFilterModifier::SimpleFilterModifier(int flags)
_lb_blend.set_mnemonic_widget(_blend);
_hb_blend.pack_start(_lb_blend, false, false, 5);
_hb_blend.pack_start(_blend, false, false, 5);
- if (flags & ISOLATION) {
+ /*
+ * For best fit inkscape-browsers with no GUI to isolation we need all groups,
+ * clones and symbols with isolation == isolate to not show to the user of
+ * Inkscape a "strange" behabiour from the designer point of view.
+ * Is strange because only happends when object not has clip, mask,
+ * filter, blending or opacity .
+ * Anyway the feature is a no-gui feature and render as spected.
+ /*
+ /* if (flags & ISOLATION) {
_isolation.property_active() = false;
_hb_blend.pack_start(_isolation, false, false, 5);
_hb_blend.pack_start(_lb_isolation, false, false, 5);
_isolation.set_tooltip_text("Don't blend childrens with objects behind");
_lb_isolation.set_tooltip_text("Don't blend childrens with objects behind");
- }
+ } */
_hb_blend.pack_start(_lb_blend, false, false, 5);
_hb_blend.pack_start(_blend, false, false, 5);
Gtk::Separator *separator = Gtk::manage(new Gtk::Separator());