View Issue Details

IDProjectCategoryView StatusLast Update
0002939JEDI VCL00 JVCL Componentspublic2005-05-09 03:14
ReportermessenjahAssigned ToAHUser 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 
Target VersionFixed in Version3.10 
Summary0002939: jvHTLabel does not update link colors when mouse leaves
DescriptionI have a HTLabel with 2 links. If i put the mouse on 1 link, it turns red. If i now move the mouse very quickly, off the htlabel, the link stays red, while it should turn blue
Additional InformationThis problem arises because no WM_MOUSEMOVE is sent to HTLabel.
I propose adding this to TJvCustomHTLabel definition:
    procedure MouseLeave(AControl: TControl); Override;

with this as implementation
procedure TJvCustomHTLabel.MouseLeave(AControl: TControl);
begin
  invalidate;
  inherited;
end;
TagsNo tags attached.

Activities

AHUser

2005-05-09 03:14

developer   ~0007119

Fixed in CVS.

Issue History

Date Modified Username Field Change
2005-05-08 09:42 messenjah New Issue
2005-05-09 03:14 AHUser Status new => resolved
2005-05-09 03:14 AHUser Resolution open => fixed
2005-05-09 03:14 AHUser Assigned To => AHUser
2005-05-09 03:14 AHUser Note Added: 0007119