mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-31 01:11:00 +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
b624d4a9a9
commit
664096b79b
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>
|
2013-12-13 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Tools/xpbs.m (-xProvideSelection:): Leave enough space for all
|
* Tools/xpbs.m (-xProvideSelection:): Leave enough space for all
|
||||||
|
|
|
@ -367,8 +367,12 @@ static XGDragView *sharedDragView = nil;
|
||||||
ignoring: ident
|
ignoring: ident
|
||||||
underX: x
|
underX: x
|
||||||
Y: y];
|
Y: y];
|
||||||
if (result != (Window)-1)
|
// With window decoration there may be multiple windows
|
||||||
break;
|
// at the same place. Try all of them.
|
||||||
|
if ((result != (Window)-1) && (result != (Window) None))
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue