Merge pull request #1440 from TheDaemoness/patch-1
Add 1 to songPosition in the MPD module
This commit is contained in:
commit
56ebb09e5f
|
@ -129,7 +129,7 @@ void waybar::modules::MPD::setLabel() {
|
|||
album = getTag(MPD_TAG_ALBUM);
|
||||
title = getTag(MPD_TAG_TITLE);
|
||||
date = getTag(MPD_TAG_DATE);
|
||||
song_pos = mpd_status_get_song_pos(status_.get());
|
||||
song_pos = mpd_status_get_song_pos(status_.get()) + 1;
|
||||
volume = mpd_status_get_volume(status_.get());
|
||||
if (volume < 0) {
|
||||
volume = 0;
|
||||
|
|
Loading…
Reference in New Issue