Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-06 06:14:21 +0300
committerCampbell Barton <campbell@blender.org>2022-04-06 06:14:21 +0300
commite4f71e5ef345070dc0b21df35a049184d3e46645 (patch)
tree95cf5c1e68faa9dd264ff6cceb81238eb06a6e01
parent2e9e2715efac89084afd276f1447499c304a6c5c (diff)
Fix off by one error placing the text cursor from a Python exception
Off by one error placing text from an error.
-rw-r--r--source/blender/python/intern/bpy_interface_run.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_interface_run.c b/source/blender/python/intern/bpy_interface_run.c
index 9299bd196e2..147c6cf8187 100644
--- a/source/blender/python/intern/bpy_interface_run.c
+++ b/source/blender/python/intern/bpy_interface_run.c
@@ -43,8 +43,8 @@ static void python_script_error_jump_text(Text *text, const char *filepath)
/* Start at the end so cursor motion that looses the selection,
* leaves the cursor from the most useful place.
* Also, the end can't always be set, so don't give it priority. */
- txt_move_to(text, lineno_end - 1, offset_end, false);
- txt_move_to(text, lineno - 1, offset, true);
+ txt_move_to(text, lineno_end - 1, offset_end - 1, false);
+ txt_move_to(text, lineno - 1, offset - 1, true);
}
}