Skip to content

Commit

Permalink
修复 VideoWidget 停止播放的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiyiYo committed Jul 24, 2024
1 parent 971951d commit 8c58351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qfluentwidgets/multimedia/video_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def pause(self):
self.playBar.pause()

def stop(self):
self.playBar.pause()
self.playBar.stop()

def togglePlayState(self):
""" toggle play state """
Expand Down

0 comments on commit 8c58351

Please sign in to comment.