View | Details | Raw Unified | Return to bug 45723
Collapse All | Expand All

(-)sources/org/apache/batik/bridge/SVGTextElementBridge.java (-1 / +10 lines)
Lines 550-555 Link Here
550
        }
550
        }
551
    }
551
    }
552
552
553
    public void handleDOMAttrModifiedEvent(MutationEvent evt) {
554
        Node childNode = (Node)evt.getTarget();
555
        //if the parent is displayed, then discard the layout.
556
        if (isParentDisplayed(childNode)) {
557
            laidoutText = null;
558
            computeLaidoutText(ctx, e, getTextNode());
559
        }
560
    }
561
553
    /**
562
    /**
554
     * Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired.
563
     * Invoked when an MutationEvent of type 'DOMNodeRemoved' is fired.
555
     */
564
     */
Lines 2157-2163 Link Here
2157
         * Invoked when an MutationEvent of type 'DOMAttrModified' is fired.
2166
         * Invoked when an MutationEvent of type 'DOMAttrModified' is fired.
2158
         */
2167
         */
2159
        public void handleDOMAttrModifiedEvent(MutationEvent evt) {
2168
        public void handleDOMAttrModifiedEvent(MutationEvent evt) {
2160
            //nothing to do
2169
            textBridge.handleDOMAttrModifiedEvent(evt);
2161
        }
2170
        }
2162
2171
2163
        /**
2172
        /**

Return to bug 45723