This is a patch to fix the same issue that was recently fixed in intone
where the movement of the slider bar causes seeking. I e-mailed this to
the podboy creator, but maybe the address I had wasn't current. Perhaps
the maintainer will see the patch here, or SHR could apply the patch.
Ben
Index: podboy/gui.py
===================================================================
--- podboy/gui.py (revision 221)
+++ podboy/gui.py (working copy)
@@ -1430,6 +1430,9 @@
slider_position = self.slider_position.value
+ if slider_position - self.last_pos < 1.0 and self.last_pos - slider_position < 1.0:
+ self.slider_position_timer_lock = False
+ return
try:
self.gst.seek(slider_position)
except Exception, e:
_______________________________________________
Shr-devel mailing list
[email protected]
http://lists.shr-project.org/mailman/listinfo/shr-devel