From 452a6077f9356526be17355e008362fbf46309f8 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sun, 1 Sep 2013 03:45:11 +0200 Subject: (gtkradio) workaround gtk+ issue else we got: "object 36b6540 is not really a GObject at (...)/Glib/Object/Introspection.pm line 61." See also bgo#679563 --- perl-install/ugtk3.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm index 74fc1f21f..07c0ee725 100644 --- a/perl-install/ugtk3.pm +++ b/perl-install/ugtk3.pm @@ -146,7 +146,7 @@ sub gtkradio { my $def = shift; my $radio; map { - my $w = gtkset_active($radio = Gtk3::RadioButton->new_with_label($radio ? $radio->get_group : undef, $_), $_ eq $def); + my $w = gtkset_active($radio = Gtk3::RadioButton->new_with_label_from_widget($radio, $_), $_ eq $def); $w->get_child->set_line_wrap(1); $w; } @_; -- cgit v1.2.1