| Index: ios/chrome/app/chrome_exe_main.mm
|
| diff --git a/ios/chrome/app/chrome_exe_main.mm b/ios/chrome/app/chrome_exe_main.mm
|
| index c44744584ad5697be53681ed7cd107b5cabba092..b2cdcd3ddad8142182af51f843f97a0439a4ebc8 100644
|
| --- a/ios/chrome/app/chrome_exe_main.mm
|
| +++ b/ios/chrome/app/chrome_exe_main.mm
|
| @@ -34,10 +34,7 @@ int main(int argc, char* argv[]) {
|
|
|
| // Set NSUserDefaults keys to force pseudo-RTL if needed.
|
| if ([standardDefaults boolForKey:@"EnablePseudoRTL"]) {
|
| - NSDictionary* pseudoDict = [NSDictionary
|
| - dictionaryWithObjectsAndKeys:@"YES", @"AppleTextDirection", @"YES",
|
| - @"NSForceRightToLeftWritingDirection",
|
| - nil];
|
| + NSDictionary* pseudoDict = @{ @"YES" : @"AppleTextDirection" };
|
| [standardDefaults registerDefaults:pseudoDict];
|
| }
|
|
|
|
|