Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8127433

WebView.resize marks DirtyBits.NODE_GEOMETRY if it is not needed

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 7u6
    • 7u6
    • javafx
    • web

      We should check that the geometry is really changed:

          @Override public void resize(double width, double height) {
      + if ((width == this.width.get()) && (height == this.height.get())) return;
              this.width.set(width);
              this.height.set(height);
              impl_markDirty(DirtyBits.NODE_GEOMETRY);
              impl_geomChanged();
          }

            malenkov Sergey Malenkov (Inactive)
            malenkov Sergey Malenkov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: