mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
Remove left-over call to a mouse down event in a mouse-up
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@29025 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ed0e764447
commit
50ced01cf2
2 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-11-16 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Source\win32\WIN32Server.m: Remove left-over call to a mouse down event in a mouse-up
|
||||
|
||||
2009-11-10 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source\win32\WIN32Server.m: Track mouse button state so that when
|
||||
|
|
|
@ -711,8 +711,6 @@ LRESULT CALLBACK MainWndProc(HWND hwnd, UINT uMsg,
|
|||
break;
|
||||
case WM_LBUTTONUP: //MOUSE
|
||||
NSDebugLLog(@"NSEvent", @"Got Message %s for %d", "LBUTTONUP", hwnd);
|
||||
ev = process_mouse_event(self, hwnd, wParam, lParam, NSLeftMouseDown);
|
||||
[GSCurrentServer() postEvent: ev atStart: NO];
|
||||
ev = process_mouse_event(self, hwnd, wParam, lParam, NSLeftMouseUp);
|
||||
break;
|
||||
case WM_LBUTTONDBLCLK: //MOUSE
|
||||
|
|
Loading…
Reference in a new issue