View Issue Details

IDProjectCategoryView StatusLast Update
0004617JEDI VCL00 JVCL Componentspublic2008-12-13 13:08
ReportersnwAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.33 
Target VersionFixed in Version3.36 
Summary0004617: TJvTrayIcon.SetSwingForthAndBack improper implementation and absence
Descriptionin issue 0004386, SetSwingForthAndBack property has been added to daily svn. i have today found improper implementation in line 1220:

procedure TJvTrayIcon.SetSwingForthAndBack(const Value: Boolean);
begin
  if Value <> FSwingForthAndBack then
  begin
    FSwingForthAndBack := Value;
    if FSwingForthAndBack then
       Animated := True;
  end;
end;

this property shouldn't set Animated to true as it only regulates the way it is viewed. so now when i use FSwingForthAndBack enabled, i can't stop the animation (and i want it to play occasionally) - disabling Animated in designtime doesn't help (although in runtime does). another thing is that when i was looking for the last version of TJvTrayIcon unit to verify that this implementation still exists, i couldn't find this property AT ALL as if it was somehow removed.
Additional Informationjust change to:

procedure TJvTrayIcon.SetSwingForthAndBack(const Value: Boolean);
begin
  if Value <> FSwingForthAndBack then
    FSwingForthAndBack := Value;
end;
TagsNo tags attached.

Activities

AHUser

2008-12-13 13:08

developer   ~0015098

Fixed in SVN.

Issue History

Date Modified Username Field Change
2008-12-12 14:53 snw New Issue
2008-12-13 13:08 AHUser Note Added: 0015098
2008-12-13 13:08 AHUser Status new => resolved
2008-12-13 13:08 AHUser Fixed in Version => Daily / SVN
2008-12-13 13:08 AHUser Resolution open => fixed
2008-12-13 13:08 AHUser Assigned To => AHUser