summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-11-13 20:56:30 +0100
committerGitHub <noreply@github.com>2017-11-13 20:56:30 +0100
commit2a9e742c12deb8f4517d7aab1e3fb1fc4c51a35c (patch)
tree0cd777e953b7e8f713a9ead9600dbdf965ddbd12
parent03a080547dacdec0d8c181df700ef8dd1c092913 (diff)
parent3fac4ef336c3846f423a6243f34e8d9d6eeac85e (diff)
Merge pull request #12907 from YeldhamDev/indentation_connection
Fixed signal connection dialog ignoring indentation settings when creating a function
-rw-r--r--modules/gdscript/gd_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp
index 346b7d326a..655e785174 100644
--- a/modules/gdscript/gd_editor.cpp
+++ b/modules/gdscript/gd_editor.cpp
@@ -365,7 +365,7 @@ String GDScriptLanguage::make_function(const String &p_class, const String &p_na
}
s += " ";
}
- s += "):\n\tpass # replace with function body\n";
+ s += "):\n" + _get_indentation() + "pass # replace with function body\n";
return s;
}