added button mask for pausing

This commit is contained in:
Rachel Lambda Samuelsson 2021-01-29 15:34:05 +01:00
parent 451f56d591
commit 569272e96f

View File

@ -449,6 +449,9 @@ int main(int argc, char** argv) {
break; break;
/* toggle pause on press */ /* toggle pause on press */
case ButtonPress: case ButtonPress:
if (ev.xbutton.button == Button1) {
DEBUG("Toggling pause\n"); DEBUG("Toggling pause\n");
mpd_run_noidle(connection); mpd_run_noidle(connection);
@ -460,6 +463,8 @@ int main(int argc, char** argv) {
mpd_send_idle_mask(connection, MPD_IDLE_PLAYER); mpd_send_idle_mask(connection, MPD_IDLE_PLAYER);
mpd_check_error(); mpd_check_error();
}
break; break;
} }
} }