Compare commits

..

No commits in common. "86ca68464306fcf6a7c7ad3f84d683c4acf34057" and "16d9c54bb04a0b5096a87dfd538421ea1639a7e8" have entirely different histories.

View file

@ -88,7 +88,7 @@ class Ui.Window : Adw.ApplicationWindow {
} }
this.shuffle_all_tracks.sensitive = true; this.shuffle_all_tracks.sensitive = true;
this.play_queue_model.select_item (0, true); this.playbin.begin_playback (0);
}); });
}); });
}); });
@ -189,12 +189,12 @@ class Ui.Window : Adw.ApplicationWindow {
} }
[GtkCallback] private void on_skip_forward_clicked () { [GtkCallback] private void on_skip_forward_clicked () {
this.play_queue_model.select_item (this.playbin.playing_index+1, true); this.playbin.begin_playback (this.playbin.playing_index+1);
} }
[GtkCallback] private void on_skip_backward_clicked () { [GtkCallback] private void on_skip_backward_clicked () {
if (this.playbin.playing_index > 0) { if (this.playbin.playing_index > 0) {
this.play_queue_model.select_item (this.playbin.playing_index-1, true); this.playbin.begin_playback (this.playbin.playing_index-1);
} }
} }