Correction to dragging mask computation by Abdreas Schik.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25956 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2008-01-16 16:45:12 +00:00
parent f17d86d3eb
commit 186e6b0744
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2008-01-16 Fred Kiefer <FredKiefer@gmx.de>
* Source/GSDragView.m (-_updateAndMoveImageToCorrectPosition):
Add missing "!" in mask for local call.
Patch by Andreas Schik <andreas.schik@web.de>.
2008-01-14 09:37-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Headers/AppKit/NSSegmentedCell.h

View file

@ -900,7 +900,7 @@ static GSDragView *sharedDragView = nil;
{
unsigned int newMask;
newMask = [dragSource draggingSourceOperationMaskForLocal: destExternal];
newMask = [dragSource draggingSourceOperationMaskForLocal: !destExternal];
if (newMask != dragMask)
{
dragMask = newMask;