diff options
Diffstat (limited to 'perl-install')
-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" +} +)); + } } #------------------------------------------------------------------------------ |