mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Reorganise text editor settings
This commit is contained in:
parent
d7ab7ff6be
commit
bcfc591f86
17 changed files with 308 additions and 286 deletions
|
@ -542,10 +542,10 @@ String CSharpLanguage::make_function(const String &, const String &, const Packe
|
|||
String CSharpLanguage::_get_indentation() const {
|
||||
#ifdef TOOLS_ENABLED
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
bool use_space_indentation = EDITOR_DEF("text_editor/indent/type", 0);
|
||||
bool use_space_indentation = EDITOR_DEF("text_editor/behavior/indent/type", 0);
|
||||
|
||||
if (use_space_indentation) {
|
||||
int indent_size = EDITOR_DEF("text_editor/indent/size", 4);
|
||||
int indent_size = EDITOR_DEF("text_editor/behavior/indent/size", 4);
|
||||
|
||||
String space_indent = "";
|
||||
for (int i = 0; i < indent_size; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue