diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-12-21 00:21:10 -0200 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2018-12-21 00:21:10 -0200 |
commit | 48935816ddd5c1afd4ee20ee7dc2b70302bafe9c (patch) | |
tree | 0495c7c6cc125eb4e92e8fdc90937b44e30dc11f /SConstruct | |
parent | f3cb236f9d0e559e759dabc7cb5b6c1368d45e6e (diff) |
Fix possible error in "disable_advanced_gui" flag's description
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index f5d9358530..57fa305a15 100644 --- a/SConstruct +++ b/SConstruct @@ -164,7 +164,7 @@ opts.Add('extra_suffix', "Custom extra suffix added to the base filename of all opts.Add(BoolVariable('vsproj', "Generate a Visual Studio solution", False)) opts.Add(EnumVariable('macports_clang', "Build using Clang from MacPorts", 'no', ('no', '5.0', 'devel'))) opts.Add(BoolVariable('disable_3d', "Disable 3D nodes for a smaller executable", False)) -opts.Add(BoolVariable('disable_advanced_gui', "Disable advanced 3D GUI nodes and behaviors", False)) +opts.Add(BoolVariable('disable_advanced_gui', "Disable advanced GUI nodes and behaviors", False)) opts.Add(BoolVariable('no_editor_splash', "Don't use the custom splash screen for the editor", False)) opts.Add('system_certs_path', "Use this path as SSL certificates default for editor (for package maintainers)", '') |