From 790d2251e59aacc832684a19fa34d7fd54a9908a Mon Sep 17 00:00:00 2001 From: Stypox Date: Mon, 11 Jan 2021 15:12:44 +0100 Subject: [PATCH] Fix wrong speed indicator in queue activity --- .../java/org/schabi/newpipe/player/ServicePlayerActivity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/org/schabi/newpipe/player/ServicePlayerActivity.java b/app/src/main/java/org/schabi/newpipe/player/ServicePlayerActivity.java index cff7dac4fca..7e2f53ff73d 100644 --- a/app/src/main/java/org/schabi/newpipe/player/ServicePlayerActivity.java +++ b/app/src/main/java/org/schabi/newpipe/player/ServicePlayerActivity.java @@ -128,6 +128,7 @@ public boolean onCreateOptionsMenu(final Menu m) { getMenuInflater().inflate(R.menu.menu_play_queue, m); getMenuInflater().inflate(getPlayerOptionMenuResource(), m); onMaybeMuteChanged(); + onPlaybackParameterChanged(player.getPlaybackParameters()); return true; }