Hello,
While playing in the bittorrent settings I noticed that the "Just
save .torrent files in download folder" option doesn't always get saved when
it's selected (nor did it call the 'toggled' signal handler sometimes).
After a bit of testing it seems that even if a radio button group only
consists of two members, setting the active member to False will not set the
non-active member to True. The attached patch fixes the problem.
nick
P.S. Thomas - should we be using the bug tracker for small things like this or
is the mailing list ok?
Index: src/gpodder/gui.py
===================================================================
--- src/gpodder/gui.py (revision 720)
+++ src/gpodder/gui.py (working copy)
@@ -2203,8 +2203,10 @@
self.minimize_to_tray.set_sensitive(self.display_tray_icon.get_active())
self.entryCustomSyncName.set_sensitive( self.cbCustomSyncName.get_active())
- self.radio_copy_torrents.set_active( not self.radio_gnome_bittorrent.get_active())
+ self.radio_gnome_bittorrent.set_active(gl.config.use_gnome_bittorrent)
+ self.radio_copy_torrents.set_active(not gl.config.use_gnome_bittorrent)
+
self.iPodMountpoint.set_label( gl.config.ipod_mount)
self.filesystemMountpoint.set_label( gl.config.mp3_player_folder)
self.bluetooth_device_name.set_markup('<b>%s</b>'%gl.config.bluetooth_device_name)
_______________________________________________
gpodder-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-devel