View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0005635 | JEDI VCL | 00 JVCL Components | public | 2011-08-10 11:18 | 2012-06-11 17:08 |
| Reporter | Mad Cat | Assigned To | obones | ||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | resolved | Resolution | suspended | ||
| Product Version | 3.40 | ||||
| Target Version | Fixed in Version | ||||
| Summary | 0005635: JvImage 'Disabled' picture is not correctly displayed | ||||
| Description | if Assigned(Pictures.Disabled) and (Enabled = False) then 'bug'; State = stDisabled OnMouseEnter => State = stEntered OnMouseLeave => State = stDefault OnMouseEnter => State = stEntered OnMouseLeave => State = stDefault | ||||
| Additional Information | May be change code like this (it works for me): procedure TJvImage.MouseEnter(Control: TControl); begin if csDesigning in ComponentState then Exit; if not MouseOver then begin if UsesPictures and Enabled then State := stEntered else State := stDisabled; inherited MouseEnter(Control); end; end; procedure TJvImage.MouseLeave(Control: TControl); begin if MouseOver then begin if UsesPictures and Enabled then ApplyClick else State := stDisabled; inherited MouseLeave(Control); end; end; | ||||
| Tags | No tags attached. | ||||
|
2011-08-10 11:18
|
JvImage.pas (12,650 bytes) |
|
|
Please provide the zipped sources of a sample application showing this |
|
|
We really need a demo application to test this |
|
|
No answers, suspending the issue |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2011-08-10 11:18 | Mad Cat | New Issue | |
| 2011-08-10 11:18 | Mad Cat | File Added: JvImage.pas | |
| 2011-09-21 12:00 | obones | Note Added: 0018944 | |
| 2011-09-21 12:00 | obones | Status | new => feedback |
| 2012-02-23 11:20 | obones | Note Added: 0019503 | |
| 2012-06-11 17:08 | obones | Note Added: 0019822 | |
| 2012-06-11 17:08 | obones | Status | feedback => resolved |
| 2012-06-11 17:08 | obones | Resolution | open => suspended |
| 2012-06-11 17:08 | obones | Assigned To | => obones |