diff options
Diffstat (limited to 'editor/code_editor.h')
-rw-r--r-- | editor/code_editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/code_editor.h b/editor/code_editor.h index 28f6944b66..d209d5c7a2 100644 --- a/editor/code_editor.h +++ b/editor/code_editor.h @@ -246,9 +246,9 @@ public: /// by adding or removing comment delimiter void toggle_inline_comment(const String &delimiter); - void goto_line(int p_line); + void goto_line(int p_line, int p_column = 0); void goto_line_selection(int p_line, int p_begin, int p_end); - void goto_line_centered(int p_line); + void goto_line_centered(int p_line, int p_column = 0); void set_executing_line(int p_line); void clear_executing_line(); |