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

(-)js/org/eclipse/swt/widgets/Scale.js (-1 / +1 lines)
Lines 229-235 Link Here
229
    },
229
    },
230
    
230
    
231
    _onMouseWheel : function( evt ) {
231
    _onMouseWheel : function( evt ) {
232
      var change = evt.getWheelDelta();
232
      var change = Math.round( evt.getWheelDelta() );
233
      var sel = this._selection - change;
233
      var sel = this._selection - change;
234
      if( sel < this._minimum ) {
234
      if( sel < this._minimum ) {
235
        sel = this._minimum;
235
        sel = this._minimum;

Return to bug 278610