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 276881
Collapse All | Expand All

(-)js/org/eclipse/swt/widgets/Table.js (+6 lines)
Lines 364-370 Link Here
364
    },
364
    },
365
365
366
    setScrollBarsVisibile : function( horzVisible, vertVisible ) {
366
    setScrollBarsVisibile : function( horzVisible, vertVisible ) {
367
      if( !horzVisible ) {
368
        this._horzScrollBar.setValue( 0 );
369
      }
367
      this._horzScrollBar.setVisibility( horzVisible );
370
      this._horzScrollBar.setVisibility( horzVisible );
371
      if( !vertVisible ) {
372
        this._vertScrollBar.setValue( 0 );
373
      }
368
      this._vertScrollBar.setVisibility( vertVisible );
374
      this._vertScrollBar.setVisibility( vertVisible );
369
      this._updateClientAreaSize();
375
      this._updateClientAreaSize();
370
    },
376
    },

Return to bug 276881