B4J Question [SOLVED] CLVDragger resize event

Revisable5987

Member
Licensed User
Maximizing the form rather than dragging the form to resize will break the CLVDragger layout.
I already have the following:

B4X:
Sub MainForm_Resize (Width As Double, Height As Double)
    If dragger.IsInitialized Then
        dragger.Resize
    End If
End Sub

This happens in my project, but also in the example project posted by Erel.

Is there anyway to fix this?
 

Revisable5987

Member
Licensed User
SOLVED
B4X:
Sub MainForm_Resize (Width As Double, Height As Double)
    Sleep(0)
    If dragger.IsInitialized Then
        dragger.Resize
    End If
End Sub
 
Upvote 0
Top