Explorar o código

Fix for mixed tabs and spaces in gdscript

MistMage %!s(int64=2) %!d(string=hai) anos
pai
achega
fecbc12d17
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      modules/gdscript/gdscript_tokenizer.cpp

+ 1 - 1
modules/gdscript/gdscript_tokenizer.cpp

@@ -1099,7 +1099,7 @@ void GDScriptTokenizer::check_indent() {
 			_advance();
 		}
 
-		if (mixed) {
+		if (mixed && !(line_continuation || multiline_mode)) {
 			Token error = make_error("Mixed use of tabs and spaces for indentation.");
 			error.start_line = line;
 			error.start_column = 1;