Notes |
(0006634)
user72
2005-03-03 00:59
|
Try this:
Add to/change in class
property ParentFont default false;
Add in constructor:
...
ParentFont := false;
Font.Color := clHighlightText;
...
Rebuild the RT package (JvCustomD?R.dpk)
|
|
(0006643)
anonymous (viewer)
2005-03-06 00:13
|
That appears to have done the trick.
I switched things up a bit:
1) I changed the default to True
2) In the constructor I set ParentFont := True;
3) I set Font.Color := clWindowText;
It seemed like a TButton was setting the ParentFont to true and the color to clWindowText so that's why I made those adjustments.
Thanks for your help.
Django |
|
(0006658)
user72
2005-03-09 01:01
|
Your changes restore the default behavior and you could have accomplished the same thing it by just removing the line that changes the Font properties :)
Anyway, the Expressbuttons should have a default white color since they are generally placed on a JvExpress that has a dark gray background, so the changes I posted are the ones I am going to commit to CVS. |
|
(0006674)
anonymous (viewer)
2005-03-10 09:06
|
I'll arm wrestle you for which colour they should start out as. :-)
Thanks.
Django |
|
(0006675)
user72
2005-03-10 12:44
|
I have very big arms ;) |
|
(0006693)
user72
2005-03-13 06:43
|
Fixed in CVS |
|