Welcome, Guest
Username: Password: Remember me
Components and Libraries for Graphics Development, discussions, problems and suggestions.
  • Page:
  • 1

TOPIC:

Problem with gradient in the brush editor ORCA2D 6 years 4 weeks ago #11540

  • Jean-Philippe FABRE
  • Jean-Philippe FABRE's Avatar Topic Author
  • Offline
  • New Member
  • New Member
  • Posts: 5
  • Thank you received: 0
In the brush editor form il you choose gradient, the start point or the end point can be deleted
then you have only one point to draw the gradient so it becomes unusable.
I believe that it can be fixed in the orcad2_scene.pas:
procedure TD2GradientEdit.MouseUp(Button:TMouseButton; Shift:TShiftState; X,Y:single);

by changing the line 34495:
if (Y > Height + 10) and (FGradient.Points.Count > 1) then ....

to
if (Y > Height + 10) and (FGradient.Points.Count > 2) then....

Please Log in or Create an account to join the conversation.

Problem with gradient in the brush editor ORCA2D 6 years 4 weeks ago #11541

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4508
  • Thank you received: 1100
Thanks Sir
we add your fix to Lab CT 6.50
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

  • Page:
  • 1