blob: d78e117d515b2278492a2cd288ebdbff66126472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Only in mobileterminal+iPhone: ColorMap.o
diff -ru mobileterminal/GestureView.m mobileterminal+iPhone/GestureView.m
--- mobileterminal/GestureView.m 2007-10-08 05:00:47.000000000 +0000
+++ mobileterminal+iPhone/GestureView.m 2008-02-23 08:58:30.000000000 +0000
@@ -19,7 +19,7 @@
- (void)mouseDown:(GSEvent *)event
{
gesture = NO;
- start = GSEventGetLocationInWindow(event);
+ start = GSEventGetLocationInWindow(event).origin;
[delegate showMenu:start];
}
@@ -29,7 +29,7 @@
return;
}
- CGPoint end = GSEventGetLocationInWindow(event);
+ CGPoint end = GSEventGetLocationInWindow(event).origin;
CGPoint vector = CGPointMake(end.x - start.x, end.y - start.y);
float absx = (vector.x > 0) ? vector.x : -vector.x;
Only in mobileterminal+iPhone: GestureView.o
Only in mobileterminal+iPhone: main.o
Only in mobileterminal+iPhone: MobileTerminal.o
Only in mobileterminal+iPhone: PieView.o
Only in mobileterminal+iPhone: PTYTextView.o
Only in mobileterminal+iPhone: PTYTile.o
Only in mobileterminal+iPhone: Settings.o
Only in mobileterminal+iPhone: ShellKeyboard.o
Only in mobileterminal+iPhone: SubProcess.o
Only in mobileterminal+iPhone: Terminal
Only in mobileterminal+iPhone: VT100Screen.o
Only in mobileterminal+iPhone: VT100Terminal.o
|