diff options
| author | Thierry Vignaud <tv@mandriva.org> | 2008-03-18 19:12:40 +0000 |
|---|---|---|
| committer | Thierry Vignaud <tv@mandriva.org> | 2008-03-18 19:12:40 +0000 |
| commit | d4c6ac5efaa281abef534fd4e814c4ded7a78d79 (patch) | |
| tree | b3a9a8b88316f75c65754367577308918a2b674c /perl-install | |
| parent | 7c96a61903a7b3bf10570a3d8c85ea8b4c8ebc62 (diff) | |
| download | drakx-backup-do-not-use-d4c6ac5efaa281abef534fd4e814c4ded7a78d79.tar drakx-backup-do-not-use-d4c6ac5efaa281abef534fd4e814c4ded7a78d79.tar.gz drakx-backup-do-not-use-d4c6ac5efaa281abef534fd4e814c4ded7a78d79.tar.bz2 drakx-backup-do-not-use-d4c6ac5efaa281abef534fd4e814c4ded7a78d79.tar.xz drakx-backup-do-not-use-d4c6ac5efaa281abef534fd4e814c4ded7a78d79.zip | |
- handle position for paned widgets (needed for rpmdrake, #38762)
Diffstat (limited to 'perl-install')
| -rw-r--r-- | perl-install/NEWS | 2 | ||||
| -rw-r--r-- | perl-install/mygtk2.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 44c5f4c63..edf24ae20 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- handle position for paned widgets (needed for rpmdrake, #38762) + Version 10.15 - 18 March 2008 - adduserdrake: diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index f78347977..437112054 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -767,6 +767,7 @@ sub _gtk_any_Paned { if (!$w) { $w = "Gtk2::$class"->new; $w->set_border_width(delete $opts->{border_width}) if exists $opts->{border_width}; + $w->set_position(delete $opts->{position}) if exists $opts->{position}; } elsif ($action eq 'gtkset') { $_->destroy foreach $w->get_children; } |
