* Source/x11/XGDragView.m (-_xWindowAcceptingDnDDescendentOf:...):

Correct to work with kwin window decoration.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@37460 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2013-12-13 15:03:09 +00:00
parent 40fc6bfe72
commit efe9c42c1c
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-12-13 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGDragView.m (-_xWindowAcceptingDnDDescendentOf:...):
Correct to work with kwin window decoration.
2013-12-13 Fred Kiefer <FredKiefer@gmx.de>
* Tools/xpbs.m (-xProvideSelection:): Leave enough space for all

View file

@ -367,8 +367,12 @@ static XGDragView *sharedDragView = nil;
ignoring: ident
underX: x
Y: y];
if (result != (Window)-1)
break;
// With window decoration there may be multiple windows
// at the same place. Try all of them.
if ((result != (Window)-1) && (result != (Window) None))
{
break;
}
}
}