diff options
Diffstat (limited to 'rhimport.pl')
-rwxr-xr-x | rhimport.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rhimport.pl b/rhimport.pl index 5c3b2ca..12dd902 100755 --- a/rhimport.pl +++ b/rhimport.pl @@ -6,7 +6,7 @@ use strict; use Getopt::Long; use DBI; -use Gtk2 -init; +use Gtk2; use Gtk2::GladeXML; my $DBHOST = "airplay"; @@ -68,6 +68,8 @@ if($LISTALLOWED) { ## GUI mode if(!$M3U) { + Gtk2->init; + my $guixml = Gtk2::GladeXML->new('rhimport.glade'); $guixml or die "can't load glade xml file"; |