mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 15:58:37 +02:00
DateTimePicker: Prevent calling change when user start editing and date was null and not yet updated to valid date
git-svn-id: trunk@63264 -
This commit is contained in:
parent
5a32b9dc2e
commit
2a396aa137
@ -3490,11 +3490,17 @@ begin
|
||||
Finished := True;
|
||||
|
||||
if (not Finished) and (GetSelectedText <> S) then begin
|
||||
if (not FUserChangedText) and DateIsNull then
|
||||
if FSelectedTextPart <= 3 then
|
||||
DateTime := SysUtils.Date
|
||||
else
|
||||
DateTime := SysUtils.Now;
|
||||
if (not FUserChangedText) and DateIsNull then begin
|
||||
Inc(FSkipChangeInUpdateDate); // do not call Change here
|
||||
try
|
||||
if FSelectedTextPart <= 3 then
|
||||
DateTime := SysUtils.Date
|
||||
else
|
||||
DateTime := SysUtils.Now;
|
||||
finally
|
||||
Dec(FSkipChangeInUpdateDate);
|
||||
end;
|
||||
end;
|
||||
|
||||
if (not FLeadingZeros) and (FSelectedTextPart <= 4) then
|
||||
while (Length(S) > 1) and (S[1] = '0') do
|
||||
|
Loading…
Reference in New Issue
Block a user