mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Only select a group first in editor mode.
This commit is contained in:
parent
b524c9fec1
commit
01cdcaa480
1 changed files with 9 additions and 6 deletions
|
@ -2408,14 +2408,17 @@ namespace NLGUI
|
||||||
// This may happen when alt-tab has been used => the sheet is dragged but the left button is up
|
// This may happen when alt-tab has been used => the sheet is dragged but the left button is up
|
||||||
if (!CCtrlDraggable::getDraggedSheet())
|
if (!CCtrlDraggable::getDraggedSheet())
|
||||||
{
|
{
|
||||||
for( sint32 i = _GroupsUnderPointer.size() - 1; i >= 0; i-- )
|
if( CInterfaceElement::getEditorMode() )
|
||||||
{
|
{
|
||||||
CInterfaceGroup *g = _GroupsUnderPointer[ i ];
|
for( sint32 i = _GroupsUnderPointer.size() - 1; i >= 0; i-- )
|
||||||
if( ( g != NULL ) && ( g->isInGroup( pNewCurrentWnd ) ) )
|
|
||||||
{
|
{
|
||||||
_CapturedView = g;
|
CInterfaceGroup *g = _GroupsUnderPointer[ i ];
|
||||||
captured = true;
|
if( ( g != NULL ) && ( g->isInGroup( pNewCurrentWnd ) ) )
|
||||||
break;
|
{
|
||||||
|
_CapturedView = g;
|
||||||
|
captured = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue