bugfix
This commit is contained in:
parent
f43c8e8dcb
commit
a2148f9585
@ -135,14 +135,15 @@ class FFVideo(WidgetReady, Image):
|
|||||||
'audio', 'open', self.audio_id)
|
'audio', 'open', self.audio_id)
|
||||||
self.seek(self.position)
|
self.seek(self.position)
|
||||||
self.playing = True
|
self.playing = True
|
||||||
p = self._position / self.duration * self.width
|
if self.duration > 0:
|
||||||
|
p = self._position / self.duration * self.width
|
||||||
|
with self.canvas.after:
|
||||||
|
Color(1,1,1,1)
|
||||||
|
Line()
|
||||||
|
Line(points=[0, 0, self.width, 0], width=1)
|
||||||
|
Color(1,0,0,1)
|
||||||
|
Line(points=[0,2,p,0], width=2)
|
||||||
self.position = self._position
|
self.position = self._position
|
||||||
with self.canvas.after:
|
|
||||||
Color(1,1,1,1)
|
|
||||||
Line()
|
|
||||||
Line(points=[0, 0, self.width, 0], width=1)
|
|
||||||
Color(1,0,0,1)
|
|
||||||
Line(points=[0,2,p,0], width=2)
|
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self):
|
||||||
if self._update_task:
|
if self._update_task:
|
||||||
|
@ -1 +1 @@
|
|||||||
__version__ = '0.3.3'
|
__version__ = '0.3.4'
|
||||||
|
Loading…
Reference in New Issue
Block a user