View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005920 | JEDI VCL | 00 JVCL Components | public | 2012-06-27 13:14 | 2015-09-21 17:47 |
Reporter | Arioch | Assigned To | AHUser | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | |||||
Target Version | Fixed in Version | 3.49 | |||
Summary | 0005920: jvcolorbutton rendering broken on Enabled toggling | ||||
Description | I've found small problem with this gadget: - I change status Enebled to False. - I change status Enabled to True. - I change color - Showing color is wrong.... I've fixed it for my copy: part of procedure TJvColorButton.Paint: if Enabled then Frame3D(Canvas, Rec, cl3DDkShadow, cl3DDkShadow, 1) else begin Frame3D(Canvas, Rec, clBtnShadow, clBtnHighLight, 1); Canvas.Brush.Style := bsBDiagonal; end; I've changed to: if Enabled then begin Frame3D(Canvas, Rec, cl3DDkShadow, cl3DDkShadow, 1); Canvas.Brush.Style := bsSolid; end else begin Frame3D(Canvas, Rec, clBtnShadow, clBtnHighLight, 1); Canvas.Brush.Style := bsBDiagonal; end; | ||||
Steps To Reproduce | take demo from 0005695 Buttons 1 and 2 should revert each over, but they do not. PS. Frankly, diagonal style of "Disabled" button brush is not obvious solution. IT might be bright black stripes over bright black background for example. The overall "disabled" style should be rethought or maybe even made customized. | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2012-06-27 13:14 | Arioch | New Issue | |
2013-01-15 15:07 | obones | Relationship added | related to 0005695 |
2013-01-15 15:07 | obones | Status | new => acknowledged |
2013-05-25 17:53 | AHUser | Note Added: 0020517 | |
2013-05-25 17:53 | AHUser | Status | acknowledged => resolved |
2013-05-25 17:53 | AHUser | Fixed in Version | => Daily / SVN |
2013-05-25 17:53 | AHUser | Resolution | open => fixed |
2013-05-25 17:53 | AHUser | Assigned To | => AHUser |
2015-09-21 17:47 | obones | Fixed in Version | Daily / GIT => 3.49 |