diff options
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 48c2a6ccb..55a05c847 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -2,6 +2,7 @@ - fix version reported by drakfont & harddrake - when checking dkms module packages, check that modules are either available in urpmi media, or already installed (fix detection in live) +- add shadow 'in' around Gtk2::SimpleList widgets Version 10.4.235 - 4 October 2007, by Thierry Vignaud diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 02beca234..f218b4e66 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -494,7 +494,7 @@ sub _gtk__ScrolledWindow { $child->{to_bottom} = _allow_scroll_TextView_to_bottom($w, $child); } - if ($action eq 'gtknew' && ref($child) =~ /Gtk2::TextView|Gtk2::TreeView/) { + if ($action eq 'gtknew' && ref($child) =~ /Gtk2::SimpleList|Gtk2::TextView|Gtk2::TreeView/) { $faked_w = gtknew('Frame', shadow_type => 'in', child => $w); } } |