Skip to content

Commit

Permalink
fix(RootModel): increase default mouseWheelSensitivity
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed May 19, 2017
1 parent 89fcf61 commit 53f5a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Breakout/src/main/java/org/breakout/model/RootModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public static void setDefaults(QObject<RootModel> rootModel) {
rootModel.set(RootModel.mouseSensitivity, 15);
}
if (rootModel.get(RootModel.mouseWheelSensitivity) == null) {
rootModel.set(RootModel.mouseWheelSensitivity, 5);
rootModel.set(RootModel.mouseWheelSensitivity, 100);
}
if (rootModel.get(RootModel.showStationLabels) == null) {
rootModel.set(RootModel.showStationLabels, true);
Expand Down

0 comments on commit 53f5a1e

Please sign in to comment.