Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 333043
Collapse All | Expand All

(-)js/org/eclipse/swt/widgets/Table.js (-4 / +7 lines)
Lines 842-854 Link Here
842
    },
842
    },
843
843
844
    _onChangeSize : function( evt ) {
844
    _onChangeSize : function( evt ) {
845
      this._updateClientAreaSize();
845
      // [if] workaround for bug 333043
846
      // update _clientArea size only if it's visible, otherwize update size 
847
      // _onClientAppear event
848
      if( this._clientArea.isSeeable() ) {
849
        this._updateClientAreaSize();
850
      }
846
    },
851
    },
847
852
848
    _onClientAppear : function( evt ) {
853
    _onClientAppear : function( evt ) {
849
      this._updateRowCount();
854
      this._updateClientAreaSize();
850
      this._updateRows();
851
      this._updateGridLines();
852
    },
855
    },
853
856
854
    ///////////////////////
857
    ///////////////////////

Return to bug 333043