kit/src/main/java/com/oracle/javafx/scenebuilder/kit/editor/panel/content/driver/resizer/RegionResizer.java [129:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        sceneGraphObject.setPrefWidth(w);
        
        if ((originalMinWidth != Region.USE_COMPUTED_SIZE) && (originalMinWidth != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMinWidth(Math.min(w, originalMinWidth));
        }
        if ((originalMaxWidth != Region.USE_COMPUTED_SIZE) && (originalMaxWidth != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMaxWidth(Math.max(w, originalMaxWidth));
        }
    }

    @Override
    public void changeHeight(double height) {
        final double h = Math.round(height);
        
        sceneGraphObject.setPrefHeight(h);
        
        if ((originalMinHeight != Region.USE_COMPUTED_SIZE) && (originalMinHeight != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMinHeight(Math.min(h, originalMinHeight));
        }
        if ((originalMaxHeight != Region.USE_COMPUTED_SIZE) && (originalMaxHeight != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMaxHeight(Math.max(h, originalMaxHeight));
        }
    }

    @Override
    public void revertToOriginalSize() {
        sceneGraphObject.setMinWidth(originalMinWidth);
        sceneGraphObject.setMinHeight(originalMinHeight);
        sceneGraphObject.setPrefWidth(originalPrefWidth);
        sceneGraphObject.setPrefHeight(originalPrefHeight);
        sceneGraphObject.setMaxWidth(originalMaxWidth);
        sceneGraphObject.setMaxHeight(originalMaxHeight);
    }

    @Override
    public List<PropertyName> getPropertyNames() {
        return propertyNames;
    }

    @Override
    public Object getValue(PropertyName propertyName) {
        assert propertyName != null;
        assert propertyNames.contains(propertyName);
        
        final Object result;
        if (propertyName.equals(minWidthName)) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kit/src/main/java/com/oracle/javafx/scenebuilder/kit/editor/panel/content/driver/resizer/WebViewResizer.java [99:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        sceneGraphObject.setPrefWidth(w);
        
        if ((originalMinWidth != Region.USE_COMPUTED_SIZE) && (originalMinWidth != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMinWidth(Math.min(w, originalMinWidth));
        }
        if ((originalMaxWidth != Region.USE_COMPUTED_SIZE) && (originalMaxWidth != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMaxWidth(Math.max(w, originalMaxWidth));
        }
    }

    @Override
    public void changeHeight(double height) {
        final double h = Math.round(height);
        
        sceneGraphObject.setPrefHeight(h);
        
        if ((originalMinHeight != Region.USE_COMPUTED_SIZE) && (originalMinHeight != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMinHeight(Math.min(h, originalMinHeight));
        }
        if ((originalMaxHeight != Region.USE_COMPUTED_SIZE) && (originalMaxHeight != Region.USE_PREF_SIZE)) {
            sceneGraphObject.setMaxHeight(Math.max(h, originalMaxHeight));
        }
    }

    @Override
    public void revertToOriginalSize() {
        sceneGraphObject.setMinWidth(originalMinWidth);
        sceneGraphObject.setMinHeight(originalMinHeight);
        sceneGraphObject.setPrefWidth(originalPrefWidth);
        sceneGraphObject.setPrefHeight(originalPrefHeight);
        sceneGraphObject.setMaxWidth(originalMaxWidth);
        sceneGraphObject.setMaxHeight(originalMaxHeight);
    }
    
    @Override
    public List<PropertyName> getPropertyNames() {
        return propertyNames;
    }

    @Override
    public Object getValue(PropertyName propertyName) {
        assert propertyName != null;
        assert propertyNames.contains(propertyName);
        
        final Object result;
        if (propertyName.equals(minWidthName)) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



