Compare commits

...

2 commits

Author SHA1 Message Date
e9bfd056c8 shouldn't have removed that 2024-10-16 12:51:01 +02:00
560671c1da also do that 2024-10-16 12:49:06 +02:00

View file

@ -244,6 +244,7 @@ class Playbin : GLib.Object {
this.current_song = song; this.current_song = song;
this.position = 0; this.position = 0;
this.duration = 1; this.duration = 1;
this.now_playing (false);
} }
public void pause () { public void pause () {
@ -266,5 +267,6 @@ class Playbin : GLib.Object {
this.position = 0; this.position = 0;
this.duration = 1; this.duration = 1;
this.current_song = null;
} }
} }