lcl: prevent trackbar from calling OnChange while the control is loaded from .lfm

git-svn-id: trunk@25704 -
This commit is contained in:
dmitry 2010-05-27 17:22:46 +00:00
parent dcb90d85e7
commit 9bbf99a396

View File

@ -175,7 +175,8 @@ begin
FPosition := Value;
if HandleAllocated then
TWSTrackBarClass(WidgetSetClass).SetPosition(Self, FPosition);
Changed;
if not (csLoading in ComponentState) then
Changed;
end;
end;