View Issue Details

IDProjectCategoryView StatusLast Update
0005622JEDI VCL00 JVCL Componentspublic2012-06-13 16:30
ReporterahesseAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionsuspended 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0005622: TJvImageSquare should support Color clNone (= transparent painting)
Descriptionplease change in TJvImageSquare.Paint:

  { fill in the rest }
  Canvas.Brush.Color := FTmpColor;
  Canvas.Brush.Style := bsSolid;
  Canvas.FillRect(R);

to
  { fill in the rest }
  if FTmpColor <> clNone then
  begin
    Canvas.Brush.Color := FTmpColor;
    Canvas.Brush.Style := bsSolid;
    Canvas.FillRect(R);
  end;

to support Color clNone (support of transparent painting)
TagsNo tags attached.

Activities

obones

2011-09-21 11:57

administrator   ~0018937

Please provide the zipped sources of a sample application showing this

obones

2012-02-23 11:01

administrator   ~0019499

We really need a demo project to test this

obones

2012-06-13 16:30

administrator   ~0019982

No news, suspending the issue

Issue History

Date Modified Username Field Change
2011-07-20 11:04 ahesse New Issue
2011-09-21 11:57 obones Note Added: 0018937
2011-09-21 11:57 obones Status new => feedback
2012-02-23 11:01 obones Note Added: 0019499
2012-06-13 16:30 obones Note Added: 0019982
2012-06-13 16:30 obones Status feedback => resolved
2012-06-13 16:30 obones Resolution open => suspended
2012-06-13 16:30 obones Assigned To => obones