From e4f71e5ef345070dc0b21df35a049184d3e46645 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 6 Apr 2022 13:14:21 +1000 Subject: Fix off by one error placing the text cursor from a Python exception Off by one error placing text from an error. --- source/blender/python/intern/bpy_interface_run.c | 4 ++-- 1 file 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); } } -- cgit v1.2.3