mirror of
https://github.com/revanced/revanced-patches
synced 2025-02-16 07:46:48 +01:00
fix: Add back missing class
This commit is contained in:
parent
640909f8df
commit
4289a3d1ac
@ -0,0 +1,12 @@
|
||||
package app.revanced.integrations.patches;
|
||||
|
||||
import android.widget.ImageView;
|
||||
|
||||
import app.revanced.integrations.settings.SettingsEnum;
|
||||
|
||||
public class HidePlayerOverlayPatch {
|
||||
public static void hidePlayerOverlay(ImageView view) {
|
||||
if (!SettingsEnum.HIDE_PLAYER_OVERLAY.getBoolean()) return;
|
||||
view.setImageResource(android.R.color.transparent);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user