From 3fa7fe016fabd3414388a08981ee89e12cd51d81 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 21 Jun 2010 11:35:18 -0400 Subject: [PATCH] Set Toolbar style so button labels are displayed again (thanks Alan Fitton). If you see empty button labels instead of "Next slide" etc with recent versions of Perl Gtk2, then you need this patch. --- techtalk-pse.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/techtalk-pse.pl b/techtalk-pse.pl index 8b7f544..843f6c7 100755 --- a/techtalk-pse.pl +++ b/techtalk-pse.pl @@ -424,6 +424,7 @@ sub make_button_bar my %params = @_; my $bbox = Gtk2::Toolbar->new (); + $bbox->set_style ("GTK_TOOLBAR_TEXT"); my $i = 0; -- 1.8.3.1