TsSplitView does not throw OnOpened nor OnClosed events

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #37914
    HeDiBo
    Participant

    This code in sPanel.pas:

    Code:
    if Showing and CanAnimate(Value) then begin
    if not FAnimationTimer.Enabled then begin
    FAnimationTimer.Enabled := FState in [svsaOpening, svsaClosing];
    FAnimationTimer.OnTimer(FAnimationTimer);
    case FState of
    svsaOpened: DoOpened;
    svsaOpening: DoOpening;
    svsaClosed: DoClosed;
    svsaClosing: DoClosing;
    end;
    end;
    end
    else begin

    prevents both OnOpened and OnClosed to be called (because the animation timer is disabled).

    #58288
    Support
    Keymaster

    Some changes will be added in the nearest release.

    Events will work as expected.

    #58304
    HeDiBo
    Participant
    'Support' wrote:

    Some changes will be added in the nearest release.

    Events will work as expected.

    Solved in 13.19 a3.gif

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.