From bd619e942402d58753e97b7cfd10d4eff2c5563c Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichornlover@users.noreply.github.com> Date: Sat, 27 Apr 2024 13:49:17 -0500 Subject: [PATCH] Fix option `Hide Video Title (in Fullscreen)` --- Sources/uYouPlus.xm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/uYouPlus.xm b/Sources/uYouPlus.xm index 789b505..f1103af 100644 --- a/Sources/uYouPlus.xm +++ b/Sources/uYouPlus.xm @@ -811,7 +811,7 @@ BOOL isAd(YTIElementRenderer *self) { // Hide Video Title (in Fullscreen) - @arichornlover %hook YTMainAppVideoPlayerOverlayView - (BOOL)titleViewHidden { - return YES; + return IS_ENABLED(@"hideVideoTitle_enabled") ? YES : %orig; } %end