| Index: tools/create_editor.py
|
| diff --git a/tools/create_editor.py b/tools/create_editor.py
|
| index d53d19cda78d821288a8f045cf45e23ceaa0e872..39572601463e29ac9af0dfbcf2aadb7884d19bba 100644
|
| --- a/tools/create_editor.py
|
| +++ b/tools/create_editor.py
|
| @@ -80,7 +80,7 @@ def Modify64BitDartEditorIni(iniFilePath):
|
| lines = f.readlines()
|
| f.close()
|
| lines[lines.index('-Xms40m\n')] = '-Xms256m\n'
|
| - lines[lines.index('-Xmx1850m\n')] = '-Xmx2000m\n'
|
| + lines[lines.index('-Xmx1024m\n')] = '-Xmx2000m\n'
|
| # Add -d64 to give better error messages to user in 64 bit mode.
|
| lines[lines.index('-vmargs\n')] = '-vmargs\n-d64\n'
|
| f = open(iniFilePath, 'w')
|
|
|