17 lines
1 KiB
Text
17 lines
1 KiB
Text
|
--- podbrowser.pl.orig Sun Dec 2 19:28:14 2007
|
||
|
+++ podbrowser.pl Tue Mar 26 09:51:59 2013
|
||
|
@@ -56,11 +56,11 @@ textdomain(lc($NAME));
|
||
|
}
|
||
|
|
||
|
### bits we'll be reusing:
|
||
|
-chomp(my $OPENER = `which gnome-open 2> /dev/null`);
|
||
|
+chomp(my $OPENER = `which xdg-open 2> /dev/null`);
|
||
|
my $APP = Gtk2::GladeXML->new($GLADE_FILE);
|
||
|
my $THEME = get_an_icon_theme();
|
||
|
my $TIPS = Gtk2::Tooltips->new;
|
||
|
-my $IDX_PBF = Gtk2::Gdk::Pixbuf->new_from_file($THEME->lookup_icon('stock_bookmark', 16, 'force-svg')->get_filename)->scale_simple(16, 16, 'bilinear');
|
||
|
+my $IDX_PBF = Gtk2::Gdk::Pixbuf->new_from_file($THEME->lookup_icon('stock_add-bookmark', 16, 'force-svg')->get_filename)->scale_simple(16, 16, 'bilinear');
|
||
|
my $PAGE_PBF = Gtk2::Gdk::Pixbuf->new_from_file($THEME->lookup_icon('stock_new-text', 16, 'force-svg')->get_filename)->scale_simple(16, 16, 'bilinear');
|
||
|
my $FOLDER_PBF = Gtk2::Gdk::Pixbuf->new_from_file($THEME->lookup_icon('gnome-fs-directory', 16, 'force-svg')->get_filename)->scale_simple(16, 16, 'bilinear');
|
||
|
my $NORMAL_CURSOR = Gtk2::Gdk::Cursor->new('left_ptr');
|