Page 1 of 1

TThumbnailPreview.MarkerColor

PostPosted: February 17th, 2005, 6:45 pm
by MeW
Please patch the source to change the color of you Marker. It has an invalid if-statement which is triggered if not assigned.

Code: Select all
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;

PostPosted: February 21st, 2005, 12:30 pm
by Kambiz
Thank you so much!

Kambiz