diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-16 15:41:54 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-16 15:41:54 +0000 |
commit | 9ddd5ab972e1c3100fef248e4633c6854998ed64 (patch) | |
tree | 6cd5d4dc5652b8b64273ef699f1ae190d49933a3 | |
parent | d6aec113996a094aa72403abeb260312dabf1489 (diff) | |
download | drakx-9ddd5ab972e1c3100fef248e4633c6854998ed64.tar drakx-9ddd5ab972e1c3100fef248e4633c6854998ed64.tar.gz drakx-9ddd5ab972e1c3100fef248e4633c6854998ed64.tar.bz2 drakx-9ddd5ab972e1c3100fef248e4633c6854998ed64.tar.xz drakx-9ddd5ab972e1c3100fef248e4633c6854998ed64.zip |
override tex color when selected as well, it's white per default, and with the grey selected background it's ugly
-rw-r--r-- | perl-install/install_gtk.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index df607c422..57bbd4734 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -67,9 +67,11 @@ sub load_rc { Gtk2::Rc->parse_string(q( style "galaxy-default" { - bg[SELECTED] = "#CECECE" base[ACTIVE] = "#CECECE" base[SELECTED] = "#CECECE" + text[ACTIVE] = "#000000" + text[PRELIGHT] = "#000000" + text[SELECTED] = "#000000" } )); } |