mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-04-30 22:54:34 +02:00
feat: disable-auto-player-popup-panels
patch (#145)
This commit is contained in:
parent
ba22e3bc56
commit
3fd6df8277
@ -3,8 +3,6 @@ package app.revanced.integrations.patches;
|
|||||||
import app.revanced.integrations.settings.SettingsEnum;
|
import app.revanced.integrations.settings.SettingsEnum;
|
||||||
|
|
||||||
public class AutoRepeatPatch {
|
public class AutoRepeatPatch {
|
||||||
|
|
||||||
|
|
||||||
//Used by app.revanced.patches.youtube.layout.autorepeat.patch.AutoRepeatPatch
|
//Used by app.revanced.patches.youtube.layout.autorepeat.patch.AutoRepeatPatch
|
||||||
public static boolean shouldAutoRepeat() {
|
public static boolean shouldAutoRepeat() {
|
||||||
return SettingsEnum.PREFERRED_AUTO_REPEAT.getBoolean();
|
return SettingsEnum.PREFERRED_AUTO_REPEAT.getBoolean();
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
package app.revanced.integrations.patches;
|
||||||
|
|
||||||
|
import app.revanced.integrations.settings.SettingsEnum;
|
||||||
|
|
||||||
|
public class DisablePlayerPopupPanelsPatch {
|
||||||
|
//Used by app.revanced.patches.youtube.layout.playerpopuppanels.patch.PlayerPopupPanelsPatch
|
||||||
|
public static boolean disablePlayerPopupPanels() {
|
||||||
|
return SettingsEnum.PLAYER_POPUP_PANELS.getBoolean();
|
||||||
|
}
|
||||||
|
}
|
@ -57,6 +57,7 @@ public enum SettingsEnum {
|
|||||||
WIDE_SEARCHBAR("revanced_wide_searchbar", false, ReturnType.BOOLEAN, true),
|
WIDE_SEARCHBAR("revanced_wide_searchbar", false, ReturnType.BOOLEAN, true),
|
||||||
SHORTS_BUTTON_SHOWN("revanced_shorts_button_enabled", false, ReturnType.BOOLEAN, true),
|
SHORTS_BUTTON_SHOWN("revanced_shorts_button_enabled", false, ReturnType.BOOLEAN, true),
|
||||||
FULLSCREEN_PANELS_SHOWN("revanced_fullscreen_panels_enabled", false, ReturnType.BOOLEAN), //ToDo: Add to prefs
|
FULLSCREEN_PANELS_SHOWN("revanced_fullscreen_panels_enabled", false, ReturnType.BOOLEAN), //ToDo: Add to prefs
|
||||||
|
PLAYER_POPUP_PANELS("revanced_player_popup_panels_enabled", false, ReturnType.BOOLEAN),
|
||||||
HIDE_TIME_AND_SEEKBAR("revanced_hide_time_and_seekbar", false, ReturnType.BOOLEAN),
|
HIDE_TIME_AND_SEEKBAR("revanced_hide_time_and_seekbar", false, ReturnType.BOOLEAN),
|
||||||
|
|
||||||
//Misc. Settings
|
//Misc. Settings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user