messages, force auto scrolling to bottom when a category is changed

This commit is contained in:
Basile Burg 2020-05-16 04:10:53 +02:00
parent 87c2d4a5ff
commit a142f2f881
2 changed files with 21 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# v3.9.4-dev
## Bugs fixed
- Messages: force auto scrolling to bottom once and if the messages context is modified.
# v3.9.3
## Enhancements

View File

@ -115,6 +115,7 @@ type
fBtns: array[TAppMessageCtxt] of TToolButton;
fFiltering: boolean;
fMustScrollToBack: boolean;
fJustChangedContext: boolean;
function itemShouldBeVisible(item: TTreeNode; aCtxt: TAppMessageCtxt): boolean;
procedure filterMessages(aCtxt: TAppMessageCtxt);
procedure clearOutOfRangeMessg;
@ -535,10 +536,12 @@ procedure TMessagesWidget.selCtxtClick(Sender: TObject);
var
btn: TToolButton;
i: Integer;
o: TAppMessageCtxt;
begin
if sender.isNil then
exit;
//
o := fCtxt;
fCtxt := amcAll;
btn := TToolButton(Sender);
for i := 0 to toolbar.ButtonCount-1 do
@ -553,6 +556,8 @@ begin
fCtxt := amcApp
else if btn = btnSelMisc then
fCtxt := amcMisc;
if o <> fCtxt then
fJustChangedContext := true;
filterMessages(fCtxt);
end;
@ -1077,8 +1082,16 @@ procedure TMessagesWidget.checkIfMustScrollToBack();
var
i: TTreeNode;
begin
i := List.BottomItem;
fMustScrollToBack := i.isNotNil and i.IsVisible;
if fJustChangedContext then
begin
fMustScrollToBack := true;
fJustChangedContext := false;
end
else
begin
i := List.BottomItem;
fMustScrollToBack := i.isNotNil and i.IsVisible;
end;
end;
procedure TMessagesWidget.scrollToBack;