fix upstram reg, messages of the message widget not auto scrolled back anymore

This commit is contained in:
Basile Burg 2019-02-10 03:37:28 +01:00
parent e11293c70c
commit bc42dc300c
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ object DexedWidget: TDexedWidget
ClientWidth = 332
ShowHint = True
ShowInTaskBar = stNever
LCLVersion = '2.0.0.4'
object Back: TPanel
Left = 0
Height = 121

View File

@ -298,12 +298,12 @@ begin
if fTimerUpdateKind = tukDelay then
begin
fUpdateTimer.Enabled := false;
fUpdateTimer.OnTimer := @updaterAutoProc;
fUpdateTimer.Interval:= fDelayDur;
end
else begin
fUpdateTimer.Enabled := true;
fUpdateTimer.Interval:= fLoopInter;
fUpdateTimer.OnTimer := @updaterAutoProc;
end;
end;
end;