View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002614 | MMW v4 | Burning / Disc Handling | public | 2006-08-25 15:52 | 2007-03-20 19:16 |
Reporter | rusty | Assigned To | |||
Priority | urgent | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Fixed in Version | 3.0 | ||||
Summary | 0002614: Insufficient space warnings are not in red | ||||
Description | In the burn wizard, if there's no disc or insufficient space, the fix to 2159 caused the text in the status bar to no longer appear in read. It should somehow be made more visible. | ||||
Tags | No tags attached. | ||||
Fixed in build | 1004 | ||||
|
The problem was caused by my fix because now always default font color is used. Please modify it so that in some special cases (some new property is set?) the specified font color is used. This way red (or blinking) text could be shown. Insert the necessary code after: if useStandardFont then begin TheText.Canvas.Font := Self.Font; TheImage.Canvas.Font := Self.Font; TheText.Canvas.Font.Color := AdjustColor( ColorToRGB(Self.Font.Color), ColorToRGB(BackColor)); TheImage.Canvas.Font.Color := AdjustColor( ColorToRGB(Self.Font.Color), ColorToRGB(ForeColor)); end; in GaugePlus.pas unit. Make sure that the other functionality remains untouched. |
|
Ok, I have added another property (HighlightedText) to GaugePlus and I've fixed this issue this way. |
|
Verified 1023. |