summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-10-15 17:14:41 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-10-15 17:14:41 +0000
commit5ee4800d3a457d276a6955ab25344eabf6ee60e9 (patch)
treea73fca64e90dfd5e264d9bcbe76ecef763ea9f75 /perl-install/install_gtk.pm
parentbc80da86f4156dfca17fdad6b7372c7bc40f1be2 (diff)
downloaddrakx-backup-do-not-use-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar
drakx-backup-do-not-use-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.gz
drakx-backup-do-not-use-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.bz2
drakx-backup-do-not-use-5ee4800d3a457d276a6955ab25344eabf6ee60e9.tar.xz
drakx-backup-do-not-use-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.pm11
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"
+}
+));
+ }
}
#------------------------------------------------------------------------------