mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
* 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:
parent
40fc6bfe72
commit
efe9c42c1c
2 changed files with 11 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue