| View previous topic :: View next topic |
| Author |
Message |
MeW Member
Joined: 17 Feb 2005 Posts: 6 Location: Netherlands
|
Posted: 17/02/05 18:45 Post subject: TThumbnailPreview.MarkerColor |
|
|
Please patch the source to change the color of you Marker. It has an invalid if-statement which is triggered if not assigned.
| Code: |
procedure TThumbnailPreview.SetMarkerColor(Value: TColor);
begin
if MarkerColor <> Value then
begin
FMarkerColor := Value;
(*
if ActiveThumb = nil then
*)
if Assigned(ActiveThumb) then
ActiveThumb.PageView.Invalidate;
end;
end;
|
|
|
| Back to top |
|
 |
Kambiz Administrator

Joined: 07 Mar 2003 Posts: 414 Location: Tehran, Iran
|
Posted: 21/02/05 12:30 Post subject: |
|
|
Thank you so much!
Kambiz |
|
| Back to top |
|
 |
|