Skip to content

Commit

Permalink
fix(YouTube - Hide seekbar): Use original seekbar color if Theme patc…
Browse files Browse the repository at this point in the history
…h is not included (#580)
  • Loading branch information
LisoUseInAIKyrios committed Mar 4, 2024
1 parent 6188fa7 commit 8d48a90
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -147,9 +147,9 @@ public class Settings extends BaseSettings {

// Seekbar
public static final BooleanSetting RESTORE_OLD_SEEKBAR_THUMBNAILS = new BooleanSetting("revanced_restore_old_seekbar_thumbnails", TRUE);
public static final BooleanSetting HIDE_SEEKBAR = new BooleanSetting("revanced_hide_seekbar", FALSE);
public static final BooleanSetting HIDE_SEEKBAR = new BooleanSetting("revanced_hide_seekbar", FALSE, true);
public static final BooleanSetting HIDE_SEEKBAR_THUMBNAIL = new BooleanSetting("revanced_hide_seekbar_thumbnail", FALSE);
public static final BooleanSetting SEEKBAR_CUSTOM_COLOR = new BooleanSetting("revanced_seekbar_custom_color", TRUE, true);
public static final BooleanSetting SEEKBAR_CUSTOM_COLOR = new BooleanSetting("revanced_seekbar_custom_color", FALSE, true);
public static final StringSetting SEEKBAR_CUSTOM_COLOR_VALUE = new StringSetting("revanced_seekbar_custom_color_value", "#FF0000", true, parent(SEEKBAR_CUSTOM_COLOR));

// Action buttons
Expand Down

0 comments on commit 8d48a90

Please sign in to comment.