summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authorsanikoyes <sanikoyes@163.com>2015-06-16 15:15:10 +0800
committersanikoyes <sanikoyes@163.com>2015-06-16 15:15:10 +0800
commit14cd70faf3b9e431821613b06397973f047cbfc0 (patch)
tree51469d4d579d269a21e1d796686fcfadfa4c79fe /tools/editor
parentf2a29aadc620c2296e08ca20e926b54191c37540 (diff)
Script editor: restore line/column after script reload
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/plugins/script_editor_plugin.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp
index f5ba6a08e6..c04f74475c 100644
--- a/tools/editor/plugins/script_editor_plugin.cpp
+++ b/tools/editor/plugins/script_editor_plugin.cpp
@@ -286,8 +286,19 @@ void ScriptTextEditor::reload_text() {
ERR_FAIL_COND(script.is_null()) ;
- get_text_edit()->set_text(script->get_source_code());
- get_text_edit()->clear_undo_history();
+ TextEdit *te = get_text_edit();
+ int column = te->cursor_get_column();
+ int row = te->cursor_get_line();
+ int h = te->get_h_scroll();
+ int v = te->get_v_scroll();
+
+ te->set_text(script->get_source_code());
+ te->clear_undo_history();
+ te->cursor_set_line(row);
+ te->cursor_set_column(column);
+ te->set_h_scroll(h);
+ te->set_v_scroll(v);
+
_line_col_changed();
}