You've already forked lazarus-ccr
RxMDI - fix MDIForm.ActiveControl on change MDI windows
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2752 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -692,8 +692,8 @@ var
|
||||
begin
|
||||
ValidChars := ['+', '-', '0'..'9'];
|
||||
if ValueType = vtFloat then begin
|
||||
if Pos(DecimalSeparator, Text) = 0 then
|
||||
ValidChars := ValidChars + [DecimalSeparator];
|
||||
if Pos(DefaultFormatSettings.DecimalSeparator, Text) = 0 then
|
||||
ValidChars := ValidChars + [DefaultFormatSettings.DecimalSeparator];
|
||||
if Pos('E', AnsiUpperCase(Text)) = 0 then
|
||||
ValidChars := ValidChars + ['e', 'E'];
|
||||
end
|
||||
|
Reference in New Issue
Block a user