(self, time)
| 262 | self.set_selected_video(time) |
| 263 | |
| 264 | def seek_and_pause(self, time): |
| 265 | if self.pwindow.player.is_playing(): |
| 266 | self.pwindow.play_toggled() |
| 267 | self.pwindow.player.seek(time) |
| 268 | if self.pwindow.player.is_playing(): |
| 269 | self.pwindow.play_toggled() |
| 270 | self.pwindow.player.get_state(timeout=gst.MSECOND * 200) |
| 271 | |
| 272 | class ProgressDialog(gtk.Dialog): |
| 273 | def __init__(self, title, description, task, parent, flags, buttons): |
nothing calls this directly
no test coverage detected