b02b653af06ca6e37c1db6edf683fd40fc62b67d
java/com.sap.sailing.gwt.ui/src/main/java/com/sap/sailing/gwt/ui/client/media/MediaPlayerManagerComponent.java
| ... | ... | @@ -131,7 +131,6 @@ public class MediaPlayerManagerComponent extends AbstractComponent<MediaPlayerSe |
| 131 | 131 | this.popupPositionProvider = popupPositionProvider; |
| 132 | 132 | this.settings = settings; |
| 133 | 133 | this.storageServiceAvailable = new FileStorageServiceConnectionTestObservable(sailingServiceWrite); |
| 134 | - Window.addCloseHandler(this); |
|
| 135 | 134 | Window.addWindowClosingHandler(this); |
| 136 | 135 | userService.addUserStatusEventHandler(new UserStatusEventHandler() { |
| 137 | 136 | @Override |
java/com.sap.sse.gwt/src/com/sap/sse/gwt/client/controls/slider/SliderBar.java
| ... | ... | @@ -513,7 +513,7 @@ public class SliderBar extends FocusPanel implements RequiresResize, HasValue<Do |
| 513 | 513 | break; |
| 514 | 514 | // Mousewheel events |
| 515 | 515 | case Event.ONMOUSEWHEEL: |
| 516 | - int velocityY = event.getMouseWheelVelocityY(); |
|
| 516 | + final double velocityY = event.getDeltaY(); |
|
| 517 | 517 | event.preventDefault(); |
| 518 | 518 | if (velocityY > 0) { |
| 519 | 519 | shiftRight(1); |