You've already forked lazarus-ccr
RxFPC:fix error in priperty Value
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3631 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -289,12 +289,14 @@ end;
|
||||
|
||||
function TCustomNumEdit.GetValue: Extended;
|
||||
begin
|
||||
if not (csDesigning in ComponentState) then
|
||||
if (not (csDesigning in ComponentState)) and FFocusedDisplay then
|
||||
begin
|
||||
try
|
||||
UpdateData;
|
||||
except
|
||||
FValue := FMinValue;
|
||||
end;
|
||||
end;
|
||||
Result := FValue;
|
||||
end;
|
||||
|
||||
|
Reference in New Issue
Block a user