mirror of
https://github.com/revanced/revanced-integrations.git
synced 2025-01-20 16:57:32 +01:00
feat: hide cast button by default (#12)
This commit is contained in:
parent
d7631f371b
commit
9bf804219e
@ -139,7 +139,7 @@ public class XGlobals {
|
||||
public static Boolean suggestionsShown = true;
|
||||
public static Boolean infoCardsShown = true;
|
||||
public static Boolean brandingShown = true;
|
||||
public static Boolean castButtonShown = true;
|
||||
public static Boolean castButtonShown = false;
|
||||
public static Boolean tabletMiniplayer = false;
|
||||
public static Boolean commentsLocation = false;
|
||||
public static Boolean newActionBar = false;
|
||||
@ -173,7 +173,7 @@ public class XGlobals {
|
||||
suggestionsShown = Boolean.valueOf(sharedPreferences.getBoolean("info_card_suggestions_enabled", true));
|
||||
infoCardsShown = Boolean.valueOf(sharedPreferences.getBoolean("info_cards_enabled", true));
|
||||
brandingShown = Boolean.valueOf(sharedPreferences.getBoolean("branding_watermark_enabled", true));
|
||||
castButtonShown = Boolean.valueOf(sharedPreferences.getBoolean("cast_button_enabled", true));
|
||||
castButtonShown = Boolean.valueOf(sharedPreferences.getBoolean("cast_button_enabled", false));
|
||||
tabletMiniplayer = Boolean.valueOf(sharedPreferences.getBoolean("tablet_miniplayer", false));
|
||||
commentsLocation = Boolean.valueOf(sharedPreferences.getBoolean("comments_location", false));
|
||||
newActionBar = Boolean.valueOf(sharedPreferences.getBoolean("xfile_new_actionbar", false));
|
||||
|
Loading…
x
Reference in New Issue
Block a user