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

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 7u6
    • Affects Version/s: 7u6
    • Component/s: 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();
          }

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

              Created:
              Updated:
              Resolved:
              Imported: