Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
digao-dalpiaz committed Feb 26, 2024
1 parent 8ee7161 commit a711b79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Vcl.DzHTMLText.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1290,11 +1290,11 @@ procedure TDzHTMLText.CanvasProcess(C: TCanvas);
if csDesigning in ComponentState then
begin
{$IFDEF FMX}
C.Stroke.Thickness := 0.5;
C.Stroke.Thickness := 0.6;
C.Stroke.Kind := TBrushKind.{$IF CompilerVersion >= 27}{XE6}Solid{$ELSE}bkSolid{$ENDIF};
C.Stroke.Dash := TStrokeDash.{$IF CompilerVersion >= 27}{XE6}Dash{$ELSE}sdDash{$ENDIF};
if LError.Count>0 then C.Stroke.Color := TAlphaColors.Red else C.Stroke.Color := TAlphaColors.Black;
C.DrawRect(LocalRect, 0, 0, [], 1);
C.DrawRect(LocalRect, 1);
{$ELSE}
C.Pen.Style := psDot;
if LError.Count>0 then C.Pen.Color := clRed else C.Pen.Color := clBtnShadow;
Expand Down

0 comments on commit a711b79

Please sign in to comment.