mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-02-02 15:17:32 +01:00
fix: Add back missing class
This commit is contained in:
parent
90a7e604d3
commit
6e8d13bfbb
@ -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