diff options
Diffstat (limited to 'perl-install/mygtk3.pm')
-rw-r--r-- | perl-install/mygtk3.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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') { |