Ignore:
Timestamp:
2015-02-18T15:49:56+01:00 (9 years ago)
Author:
bastiK
Message:

update svgsalamander to r200

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/kitfox/svg/Group.java

    r7676 r8083  
    150150        //Don't process if not visible
    151151        StyleAttribute styleAttrib = new StyleAttribute();
    152         if (getStyle(styleAttrib.setName("visibility")))
    153         {
    154             if (!styleAttrib.getStringValue().equals("visible"))
     152        //Visibility can be overridden by children
     153
     154        if (getStyle(styleAttrib.setName("display")))
     155        {
     156            if (styleAttrib.getStringValue().equals("none"))
    155157            {
    156158                return;
    157159            }
    158160        }
    159 
     161       
    160162        //Do not process offscreen groups
    161163        boolean ignoreClip = diagram.ignoringClipHeuristic();
Note: See TracChangeset for help on using the changeset viewer.