< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/Parent.java

Print this page

        

*** 1385,1394 **** --- 1385,1398 ---- } // Let the super implementation handle CSS for this node ParentHelper.superProcessCSS(this); + if (isCssSensitive() == false) { + return; + } + // avoid the following call to children.toArray if there are no children if (children.isEmpty()) return; // // RT-33103
< prev index next >