diff options
author | wolfsuit <wolfsuit> | 2005-03-10 07:36:23 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2005-03-10 07:36:23 (GMT) |
commit | 64d087fdcde6b6c0f03c065fb33006319d314766 (patch) | |
tree | a8edb32bae8ae5abee2f2d887179527f24c28e72 /macosx | |
parent | 88040acda86230fe9cc4ebfef29321940976db05 (diff) | |
download | tk-64d087fdcde6b6c0f03c065fb33006319d314766.zip tk-64d087fdcde6b6c0f03c065fb33006319d314766.tar.gz tk-64d087fdcde6b6c0f03c065fb33006319d314766.tar.bz2 |
Fix for 1160025
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXMouseEvent.c | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/macosx/tkMacOSXMouseEvent.c b/macosx/tkMacOSXMouseEvent.c index 168ef73..69a322b 100644 --- a/macosx/tkMacOSXMouseEvent.c +++ b/macosx/tkMacOSXMouseEvent.c @@ -334,19 +334,31 @@ TkMacOSXProcessMouseEvent(TkMacOSXEvent *eventPtr, MacEventStatus * statusPtr) switch (medPtr->windowPart) { case inDrag: - DragWindow(medPtr->whichWin, where, NULL); - where2.h = where2.v = 0; - LocalToGlobal(&where2); - if (EqualPt(where, where2)) { - return false; + { + CGrafPtr saveWorld; + GDHandle saveDevice; + GWorldPtr dstPort; + + GetGWorld(&saveWorld, &saveDevice); + dstPort = TkMacOSXGetDrawablePort(Tk_WindowId(tkwin)); + SetGWorld(dstPort, NULL); + + DragWindow(medPtr->whichWin, where, NULL); + where2.h = where2.v = 0; + LocalToGlobal(&where2); + if (EqualPt(where, where2)) { + SetGWorld (saveWorld, saveDevice); + return false; + } + TkMacOSXWindowOffset(medPtr->whichWin, &xOffset, &yOffset); + where2.h -= xOffset; + where2.v -= yOffset; + TkGenWMConfigureEvent(tkwin, where2.h, where2.v, + -1, -1, TK_LOCATION_CHANGED); + SetGWorld(saveWorld, saveDevice); + return true; + break; } - TkMacOSXWindowOffset(medPtr->whichWin, &xOffset, &yOffset); - where2.h -= xOffset; - where2.v -= yOffset; - TkGenWMConfigureEvent(tkwin, where2.h, where2.v, - -1, -1, TK_LOCATION_CHANGED); - return true; - break; case inContent: return TkGenerateButtonEvent(where.h, where.v, window, medPtr->state); |