From 2e811de9845a12da69f075eb425506a8711977ca Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 1 Feb 2002 12:51:48 +0000 Subject: please perl_checker --- perl-install/my_gtk.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm index 8a4c25920..aa30af09e 100644 --- a/perl-install/my_gtk.pm +++ b/perl-install/my_gtk.pm @@ -553,7 +553,9 @@ sub gtkicons_labels_widget { } my $fixed = new Gtk::Fixed; foreach (@tab) { $fixed->put($_, 75, 65) } - my $redraw_function = sub { $fixed->move(@$_) foreach compute_icons($fixed->allocation->[2], $fixed->allocation->[3], 40, 15, 5, @tab) }; + my $redraw_function = sub { + $fixed->move(@$_) foreach compute_icons($fixed->allocation->[2], $fixed->allocation->[3], 40, 15, 5, @tab); + }; $fixed->signal_connect(expose_event => $redraw_function ); $fixed->signal_connect(realize => sub { $fixed->window->set_back_pixmap($background, 0); -- cgit v1.2.1