Changeset 809


Ignore:
Timestamp:
02/03/14 11:21:56 (10 years ago)
Author:
jts21
Message:

Fix bug where webview had a maximum height and the webpage would be cut off part way down the widget

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/widgets/JfxBrowser.java

    r807 r809  
    176176                       
    177177                        this._webView = new WebView();
     178                        this._webView.setMaxWidth(Double.MAX_VALUE);
     179                        this._webView.setMaxHeight(Double.MAX_VALUE);
     180                        HBox.setHgrow(this._webView, Priority.ALWAYS);
     181                        VBox.setVgrow(this._webView, Priority.ALWAYS);
    178182                        this._webEngine = this._webView.getEngine();
    179183                       
Note: See TracChangeset for help on using the changeset viewer.