From fe013012234a58930a0e899487370c619bbf786b Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 25 May 2015 08:23:02 -0400 Subject: switch from obsolete [HV]Panel to Panel widget --- perl-install/mygtk3.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/mygtk3.pm') diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index f0f2bfaad..fb01ddfed 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -1093,7 +1093,7 @@ sub _gtk_any_Paned { my ($w, $opts, $class, $action) = @_; if (!$w) { - $w = "Gtk3::$class"->new; + $w = Gtk3::Paned->new($class =~ /V/ ? 'vertical' : 'horizontal'); $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') { -- cgit v1.2.1