mirror of https://gitlab.com/basile.b/dexed.git
don't exit if timerUpdateKind is changed from delay to loop
This commit is contained in:
parent
0f04a66e63
commit
e11293c70c
|
@ -293,9 +293,8 @@ begin
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
if fUpdateTimer.isNotNil then
|
if fUpdateTimer.isNil then
|
||||||
exit;
|
fUpdateTimer := TTimer.Create(nil);
|
||||||
fUpdateTimer := TTimer.Create(nil);
|
|
||||||
if fTimerUpdateKind = tukDelay then
|
if fTimerUpdateKind = tukDelay then
|
||||||
begin
|
begin
|
||||||
fUpdateTimer.Enabled := false;
|
fUpdateTimer.Enabled := false;
|
||||||
|
|
Loading…
Reference in New Issue