Form editor: When a container has "full" arrangement, keep the z-order of its children as defined by the user.

[DEVELOPMENT ENVIRONMENT]
* BUG: Form editor: When a container has "full" arrangement, keep the z-order of its children as defined by the user.
This commit is contained in:
gambas 2021-10-04 19:27:10 +02:00
parent 84e8bfd742
commit c767105ebb

View file

@ -2098,6 +2098,8 @@ Private Sub ArrangeContainer(hParent As Container, sArr As String, Optional bInv
$hUndo.Begin
If sArr <> "F" Then
For Each hCtrl In aCtrl
If bRec Then
Try hCont = hCtrl
@ -2133,6 +2135,8 @@ Private Sub ArrangeContainer(hParent As Container, sArr As String, Optional bInv
Endif
Endif
$hUndo.End
End