mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-19 05:42:10 +00:00
Enable Reorder videos from playlist by @PoomSmart
This commit is contained in:
parent
f325a31196
commit
f4bf32bcad
1 changed files with 8 additions and 1 deletions
|
|
@ -68,11 +68,18 @@ BOOL castConfirm() {
|
|||
BOOL ytMiniPlayer() {
|
||||
return [[NSUserDefaults standardUserDefaults] boolForKey:@"ytMiniPlayer_enabled"];
|
||||
}
|
||||
BOOL hidePaidPromotionCard(){
|
||||
BOOL hidePaidPromotionCard() {
|
||||
return [[NSUserDefaults standardUserDefaults] boolForKey:@"hidePaidPromotionCard_enabled"];
|
||||
}
|
||||
|
||||
# pragma mark - Tweaks
|
||||
// Enable Reorder videos from playlist while on the Watch page - @PoomSmart
|
||||
%hook YTIPlaylistPanelVideoRenderer
|
||||
%new
|
||||
- (BOOL)canReorder { return YES; }
|
||||
%end
|
||||
//
|
||||
|
||||
// YTMiniPlayerEnabler: https://github.com/level3tjg/YTMiniplayerEnabler/
|
||||
%hook YTWatchMiniBarViewController
|
||||
- (void)updateMiniBarPlayerStateFromRenderer {
|
||||
|
|
|
|||
Loading…
Reference in a new issue