Skip to content

Commit eb1ecb0

Browse files
committed
Fix rotate direction
1 parent a7999ca commit eb1ecb0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

AbnormalMouse/AbnormalMouse.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@
10801080
CODE_SIGN_IDENTITY = "Apple Development";
10811081
CODE_SIGN_STYLE = Automatic;
10821082
COMBINE_HIDPI_IMAGES = YES;
1083-
CURRENT_PROJECT_VERSION = 65;
1083+
CURRENT_PROJECT_VERSION = 67;
10841084
DEVELOPMENT_ASSET_PATHS = "\"AbnormalMouse/Preview Content\"";
10851085
DEVELOPMENT_TEAM = 5YKZ4Y3DAW;
10861086
ENABLE_HARDENED_RUNTIME = YES;
@@ -1116,7 +1116,7 @@
11161116
CODE_SIGN_IDENTITY = "Apple Development";
11171117
CODE_SIGN_STYLE = Automatic;
11181118
COMBINE_HIDPI_IMAGES = YES;
1119-
CURRENT_PROJECT_VERSION = 65;
1119+
CURRENT_PROJECT_VERSION = 67;
11201120
DEVELOPMENT_ASSET_PATHS = "\"AbnormalMouse/Preview Content\"";
11211121
DEVELOPMENT_TEAM = 5YKZ4Y3DAW;
11221122
ENABLE_HARDENED_RUNTIME = YES;
@@ -1261,7 +1261,7 @@
12611261
CODE_SIGN_IDENTITY = "Apple Development";
12621262
CODE_SIGN_STYLE = Automatic;
12631263
COMBINE_HIDPI_IMAGES = YES;
1264-
CURRENT_PROJECT_VERSION = 65;
1264+
CURRENT_PROJECT_VERSION = 67;
12651265
DEVELOPMENT_ASSET_PATHS = "\"AbnormalMouse/Preview Content\"";
12661266
DEVELOPMENT_TEAM = 5YKZ4Y3DAW;
12671267
ENABLE_HARDENED_RUNTIME = YES;

AbnormalMouse/AbnormalMouse/OverrideController/ZoomAndRotateController.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ extension ZoomAndRotateController {
137137
func extractValue(direction: MoveMouseDirection) -> Double {
138138
switch direction {
139139
case .none: return 0
140-
case .left: return -h
141-
case .right: return h
140+
case .left: return h
141+
case .right: return -h
142142
case .up: return -v
143143
case .down: return v
144144
}

0 commit comments

Comments
 (0)