Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
feat(YouTube - Hide player flyout menu): Remove `Hide Ambient mode me…
Browse files Browse the repository at this point in the history
…nu` setting
  • Loading branch information
inotia00 authored and Francesco146 committed Aug 31, 2024
1 parent da31e22 commit 1fa19c4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ public PlayerFlyoutMenuFilter() {
);

flyoutFilterGroupList.addAll(
new ByteArrayFilterGroup(
Settings.HIDE_PLAYER_FLYOUT_MENU_AMBIENT,
"yt_outline_screen_light"
),
new ByteArrayFilterGroup(
Settings.HIDE_PLAYER_FLYOUT_MENU_AUDIO_TRACK,
"yt_outline_person_radar"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_REPORT = new BooleanSetting("revanced_hide_player_flyout_menu_report", TRUE);

public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_ADDITIONAL_SETTINGS = new BooleanSetting("revanced_hide_player_flyout_menu_additional_settings", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_AMBIENT = new BooleanSetting("revanced_hide_player_flyout_menu_ambient_mode", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_HELP = new BooleanSetting("revanced_hide_player_flyout_menu_help", TRUE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_LOOP = new BooleanSetting("revanced_hide_player_flyout_menu_loop_video", FALSE);
public static final BooleanSetting HIDE_PLAYER_FLYOUT_MENU_PIP = new BooleanSetting("revanced_hide_player_flyout_menu_pip", TRUE, true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public static void setCommentPreviewSettings() {
}

private static final Setting<?>[] additionalSettings = {
Settings.HIDE_PLAYER_FLYOUT_MENU_AMBIENT,
Settings.HIDE_PLAYER_FLYOUT_MENU_HELP,
Settings.HIDE_PLAYER_FLYOUT_MENU_LOOP,
Settings.HIDE_PLAYER_FLYOUT_MENU_PIP,
Expand Down Expand Up @@ -99,7 +98,6 @@ private static boolean isAdditionalSettingsEnabled() {

boolean additionalSettingsEnabled = true;
final BooleanSetting[] additionalSettings = {
Settings.HIDE_PLAYER_FLYOUT_MENU_AMBIENT,
Settings.HIDE_PLAYER_FLYOUT_MENU_HELP,
Settings.HIDE_PLAYER_FLYOUT_MENU_LOOP,
Settings.HIDE_PLAYER_FLYOUT_MENU_PIP,
Expand Down

0 comments on commit 1fa19c4

Please sign in to comment.