diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-11-13 20:56:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 20:56:30 +0100 |
commit | 2a9e742c12deb8f4517d7aab1e3fb1fc4c51a35c (patch) | |
tree | 0cd777e953b7e8f713a9ead9600dbdf965ddbd12 /modules/gdscript/gd_editor.cpp | |
parent | 03a080547dacdec0d8c181df700ef8dd1c092913 (diff) | |
parent | 3fac4ef336c3846f423a6243f34e8d9d6eeac85e (diff) |
Merge pull request #12907 from YeldhamDev/indentation_connection
Fixed signal connection dialog ignoring indentation settings when creating a function
Diffstat (limited to 'modules/gdscript/gd_editor.cpp')
-rw-r--r-- | modules/gdscript/gd_editor.cpp | 2 |
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; } |