Compare commits

..

2 commits

Author SHA1 Message Date
86ca684643 Merge branch 'trunk' of git.ddd.rip:zerica/audrey into trunk 2024-10-15 22:53:39 +02:00
a770d71399 better buttons 2024-10-15 22:53:34 +02:00

View file

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