diff --git a/glade/tray_menu.glade b/glade/tray_menu.glade index d55cf17ca..f4e0880a0 100644 --- a/glade/tray_menu.glade +++ b/glade/tray_menu.glade @@ -106,7 +106,7 @@ True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Plugins + Plu_gins True diff --git a/pixmaps/downloading16.png b/pixmaps/downloading16.png new file mode 100644 index 000000000..2db6f83a5 Binary files /dev/null and b/pixmaps/downloading16.png differ diff --git a/pixmaps/downloading22.png b/pixmaps/downloading22.png deleted file mode 100644 index 77e61965a..000000000 Binary files a/pixmaps/downloading22.png and /dev/null differ diff --git a/pixmaps/inactive16.png b/pixmaps/inactive16.png new file mode 100644 index 000000000..4c8d0456c Binary files /dev/null and b/pixmaps/inactive16.png differ diff --git a/pixmaps/inactive22.png b/pixmaps/inactive22.png deleted file mode 100644 index 685d9f327..000000000 Binary files a/pixmaps/inactive22.png and /dev/null differ diff --git a/pixmaps/seeding16.png b/pixmaps/seeding16.png new file mode 100644 index 000000000..38912217e Binary files /dev/null and b/pixmaps/seeding16.png differ diff --git a/pixmaps/seeding22.png b/pixmaps/seeding22.png deleted file mode 100644 index 816e5e075..000000000 Binary files a/pixmaps/seeding22.png and /dev/null differ diff --git a/src/common.py b/src/common.py index a0996539d..0bf246727 100644 --- a/src/common.py +++ b/src/common.py @@ -114,6 +114,7 @@ def get_pixmap(fname): return os.path.join(PIXMAP_DIR, fname) def open_url_in_browser(dialog, link): + print "link: ", link try: webbrowser.open(link) except webbrowser.Error: diff --git a/src/interface.py b/src/interface.py index 915558c27..f7e00b0b8 100644 --- a/src/interface.py +++ b/src/interface.py @@ -169,8 +169,8 @@ class DelugeGTK: "show_hide_window_toggled": self.show_hide_window_toggled }) - self.tray_glade.get_widget("download-limit-image").set_from_file(common.get_pixmap('downloading22.png')) - self.tray_glade.get_widget("upload-limit-image").set_from_file(common.get_pixmap('seeding22.png')) + self.tray_glade.get_widget("download-limit-image").set_from_file(common.get_pixmap('downloading16.png')) + self.tray_glade.get_widget("upload-limit-image").set_from_file(common.get_pixmap('seeding16.png')) self.build_tray_bwsetsubmenu() self.tray_icon.connect("activate", self.tray_clicked) @@ -802,11 +802,11 @@ class DelugeGTK: # Set the appropriate status icon if state["is_paused"]: - status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("inactive22.png")) + status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("inactive16.png")) elif state["is_seed"]: - status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("seeding22.png")) + status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("seeding16.png")) else: - status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("downloading22.png")) + status_icon = gtk.gdk.pixbuf_new_from_file(common.get_pixmap("downloading16.png")) rlist = [int(unique_id), int(queue), status_icon, str(name), long(size), float(progress), str(message), int(seeds), int(seeds_t), int(peers), int(peers_t), int(dlrate), int(ulrate), int(eta), float(share)]