[Cose-svnmail] SF.net SVN: cose:[1840] trunk/editor/NumberEdit.pas
Status: Planning
Brought to you by:
nfz_
From: <nf...@us...> - 2010-03-16 02:48:33
|
Revision: 1840 http://cose.svn.sourceforge.net/cose/?rev=1840&view=rev Author: nfz_ Date: 2010-03-16 02:48:26 +0000 (Tue, 16 Mar 2010) Log Message: ----------- NumberEdit: Bug Fix: Unit conversions would not cause a text update if the user had edited the value. Fixed: forget to set ExceptNoChange to false if it was true after float value was set. Modified Paths: -------------- trunk/editor/NumberEdit.pas Modified: trunk/editor/NumberEdit.pas =================================================================== --- trunk/editor/NumberEdit.pas 2010-03-12 17:17:44 UTC (rev 1839) +++ trunk/editor/NumberEdit.pas 2010-03-16 02:48:26 UTC (rev 1840) @@ -131,8 +131,10 @@ ExternalChange := True; Text := FloatToStrF(FFloatValue,ffFixed,DigitsToLeft,DigitsToRight); ExternalChange := False; + end + else ExceptNoChange := False; - end; + end; end; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |