diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-15 17:14:41 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-15 17:14:41 +0000 |
commit | 5ee4800d3a457d276a6955ab25344eabf6ee60e9 (patch) | |
tree | a73fca64e90dfd5e264d9bcbe76ecef763ea9f75 /perl-install/install_gtk.pm | |
parent | bc80da86f4156dfca17fdad6b7372c7bc40f1be2 (diff) | |
download | drakx-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar drakx-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.gz drakx-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.bz2 drakx-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.xz drakx-5ee4800d3a457d276a6955ab25344eabf6ee60e9.zip |
override gtk theme selection color since we won't do inverse-video on the text when it's images
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 29c8b1ae1..3025ee395 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -62,6 +62,17 @@ sub load_rc { Gtk2::Rc->parse_string(join("\n", @contents)); } + if ($::move) { + #- override selection color since we won't do inverse-video on the text when it's images + Gtk2::Rc->parse_string(q( +style "galaxy-default" +{ + bg[SELECTED] = "#CECECE" + base[ACTIVE] = "#CECECE" + base[SELECTED] = "#CECECE" +} +)); + } } #------------------------------------------------------------------------------ |