mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-04-20 02:32:10 +00:00
Change default to playback speed controls disabled
This commit is contained in:
parent
51e0d20c61
commit
f3ab64d3dc
1 changed files with 7 additions and 1 deletions
|
|
@ -1418,8 +1418,14 @@ static BOOL findCell(ASNodeController *nodeController, NSArray <NSString *> *ide
|
|||
if (![allKeys containsObject:@"YouPiPEnabled"]) {
|
||||
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"YouPiPEnabled"];
|
||||
}
|
||||
// Broken uYou setting, change default to allow autoplay, user can disable later
|
||||
// Broken uYou 3.0.3 setting: No Suggested Videos at The Video End
|
||||
// Set default to allow autoplay, user can disable later
|
||||
if (![allKeys containsObject:@"noSuggestedVideoAtEnd"]) {
|
||||
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"noSuggestedVideoAtEnd"];
|
||||
}
|
||||
// Broken uYou 3.0.2 setting: Playback Speed Controls
|
||||
// Set default to disabled
|
||||
if (![allKeys containsObject:@"showPlaybackRate"]) {
|
||||
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"showPlaybackRate"];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue