kit/src/main/java/com/oracle/javafx/scenebuilder/kit/editor/panel/content/driver/resizer/RegionResizer.java [186:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        } else {
            // Emergency code
            result = null;
        }
        
        return result;
    }

    @Override
    public Map<PropertyName, Object> getChangeMap() {
        final Map<PropertyName, Object> result = new HashMap<>();
        if (MathUtils.equals(sceneGraphObject.getMinWidth(), originalMinWidth) == false) {
            result.put(minWidthName, sceneGraphObject.getMinWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getMinHeight(), originalMinHeight) == false) {
            result.put(minHeightName, sceneGraphObject.getMinHeight());
        }
        if (MathUtils.equals(sceneGraphObject.getPrefWidth(), originalPrefWidth) == false) {
            result.put(prefWidthName, sceneGraphObject.getPrefWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getPrefHeight(), originalPrefHeight) == false) {
            result.put(prefHeightName, sceneGraphObject.getPrefHeight());
        }
        if (MathUtils.equals(sceneGraphObject.getMaxWidth(), originalMaxWidth) == false) {
            result.put(maxWidthName, sceneGraphObject.getMaxWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getMaxHeight(), originalMaxHeight) == false) {
            result.put(maxHeightName, sceneGraphObject.getMaxHeight());
        }
        return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kit/src/main/java/com/oracle/javafx/scenebuilder/kit/editor/panel/content/driver/resizer/WebViewResizer.java [156:185]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        } else {
            // Emergency code
            result = null;
        }
        
        return result;
    }

    @Override
    public Map<PropertyName, Object> getChangeMap() {
        final Map<PropertyName, Object> result = new HashMap<>();
        if (MathUtils.equals(sceneGraphObject.getMinWidth(), originalMinWidth) == false) {
            result.put(minWidthName, sceneGraphObject.getMinWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getMinHeight(), originalMinHeight) == false) {
            result.put(minHeightName, sceneGraphObject.getMinHeight());
        }
        if (MathUtils.equals(sceneGraphObject.getPrefWidth(), originalPrefWidth) == false) {
            result.put(prefWidthName, sceneGraphObject.getPrefWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getPrefHeight(), originalPrefHeight) == false) {
            result.put(prefHeightName, sceneGraphObject.getPrefHeight());
        }
        if (MathUtils.equals(sceneGraphObject.getMaxWidth(), originalMaxWidth) == false) {
            result.put(maxWidthName, sceneGraphObject.getMaxWidth());
        }
        if (MathUtils.equals(sceneGraphObject.getMaxHeight(), originalMaxHeight) == false) {
            result.put(maxHeightName, sceneGraphObject.getMaxHeight());
        }
        return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



