diff --git a/trunk/operations.py b/trunk/operations.py index d0638a3c..d6ba8e37 100644 --- a/trunk/operations.py +++ b/trunk/operations.py @@ -39,8 +39,9 @@ class Operations: # Mark progress on the progress bar def markProgress(self,widget,data): - self.song.curTime() + time = self.song.curTime() widget.set_fraction(float(self.song.current)/float(self.song.total)) + widget.set_text(time.toStr()) #print float(self.song.current)/float(self.song.total) return True