mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-06-12 21:27:43 +02:00
fix(YouTube - Player components): Speed overlay value
only works when set to 1.0 or higher https://github.com/inotia00/ReVanced_Extended/issues/2849
This commit is contained in:
@ -518,6 +518,12 @@ public class PlayerPatch {
|
||||
return SPEED_OVERLAY_VALUE;
|
||||
}
|
||||
|
||||
public static float speedOverlayRelativeValue(float original) {
|
||||
return SPEED_OVERLAY_VALUE != 2.0f
|
||||
? 0f
|
||||
: original;
|
||||
}
|
||||
|
||||
public static boolean hideChannelWatermark(boolean original) {
|
||||
return !Settings.HIDE_CHANNEL_WATERMARK.get() && original;
|
||||
}
|
||||
|
Reference in New Issue
Block a user