mirror of https://gitlab.com/basile.b/dexed.git
fix upstram reg, messages of the message widget not auto scrolled back anymore
This commit is contained in:
parent
e11293c70c
commit
bc42dc300c
|
|
@ -9,6 +9,7 @@ object DexedWidget: TDexedWidget
|
||||||
ClientWidth = 332
|
ClientWidth = 332
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
ShowInTaskBar = stNever
|
ShowInTaskBar = stNever
|
||||||
|
LCLVersion = '2.0.0.4'
|
||||||
object Back: TPanel
|
object Back: TPanel
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 121
|
Height = 121
|
||||||
|
|
|
||||||
|
|
@ -298,12 +298,12 @@ begin
|
||||||
if fTimerUpdateKind = tukDelay then
|
if fTimerUpdateKind = tukDelay then
|
||||||
begin
|
begin
|
||||||
fUpdateTimer.Enabled := false;
|
fUpdateTimer.Enabled := false;
|
||||||
fUpdateTimer.OnTimer := @updaterAutoProc;
|
|
||||||
fUpdateTimer.Interval:= fDelayDur;
|
fUpdateTimer.Interval:= fDelayDur;
|
||||||
end
|
end
|
||||||
else begin
|
else begin
|
||||||
fUpdateTimer.Enabled := true;
|
fUpdateTimer.Enabled := true;
|
||||||
fUpdateTimer.Interval:= fLoopInter;
|
fUpdateTimer.Interval:= fLoopInter;
|
||||||
|
fUpdateTimer.OnTimer := @updaterAutoProc;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue