mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
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:
parent
f17d86d3eb
commit
186e6b0744
2 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -900,7 +900,7 @@ static GSDragView *sharedDragView = nil;
|
|||
{
|
||||
unsigned int newMask;
|
||||
|
||||
newMask = [dragSource draggingSourceOperationMaskForLocal: destExternal];
|
||||
newMask = [dragSource draggingSourceOperationMaskForLocal: !destExternal];
|
||||
if (newMask != dragMask)
|
||||
{
|
||||
dragMask = newMask;
|
||||
|
|
Loading…
Reference in a new issue