summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-04-02 17:33:03 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-04-02 17:33:03 +0200
commit11b7f552ca78f1d1a45d35c75c9d7dcfbc1cc1d5 (patch)
tree328d66aeb841b184b69dc0230983d72690ae136a
parent3ca684dd9b6ac4a0ff1fdfa4d7794ac46017ccc9 (diff)
parent1e9fd10f68e462a7fc6aac84e7659d0fcb0dc0e3 (diff)
downloadredot-engine-11b7f552ca78f1d1a45d35c75c9d7dcfbc1cc1d5.tar.gz
Merge pull request #75523 from ronyeh/go-to-line
Fix off-by-one issue where "Go to Line" dialog shows the incorrect line number (one less than the actual current line).
-rw-r--r--editor/code_editor.cpp19
1 files changed, 11 insertions, 8 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 9a8a1097cd..121af0170c 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -42,7 +42,8 @@
void GotoLineDialog::popup_find_line(CodeEdit *p_edit) {
text_editor = p_edit;
- line->set_text(itos(text_editor->get_caret_line()));
+ // Add 1 because text_editor->get_caret_line() starts from 0, but the editor user interface starts from 1.
+ line->set_text(itos(text_editor->get_caret_line() + 1));
line->select_all();
popup_centered(Size2(180, 80) * EDSCALE);
line->grab_focus();
@@ -53,12 +54,14 @@ int GotoLineDialog::get_line() const {
}
void GotoLineDialog::ok_pressed() {
- if (get_line() < 1 || get_line() > text_editor->get_line_count()) {
+ // Subtract 1 because the editor user interface starts from 1, but text_editor->set_caret_line(n) starts from 0.
+ const int line_number = get_line() - 1;
+ if (line_number < 0 || line_number >= text_editor->get_line_count()) {
return;
}
text_editor->remove_secondary_carets();
- text_editor->unfold_line(get_line() - 1);
- text_editor->set_caret_line(get_line() - 1);
+ text_editor->unfold_line(line_number);
+ text_editor->set_caret_line(line_number);
hide();
}
@@ -1092,13 +1095,13 @@ void CodeTextEditor::remove_find_replace_bar() {
}
void CodeTextEditor::trim_trailing_whitespace() {
- bool trimed_whitespace = false;
+ bool trimmed_whitespace = false;
for (int i = 0; i < text_editor->get_line_count(); i++) {
String line = text_editor->get_line(i);
if (line.ends_with(" ") || line.ends_with("\t")) {
- if (!trimed_whitespace) {
+ if (!trimmed_whitespace) {
text_editor->begin_complex_operation();
- trimed_whitespace = true;
+ trimmed_whitespace = true;
}
int end = 0;
@@ -1112,7 +1115,7 @@ void CodeTextEditor::trim_trailing_whitespace() {
}
}
- if (trimed_whitespace) {
+ if (trimmed_whitespace) {
text_editor->merge_overlapping_carets();
text_editor->end_complex_operation();
text_editor->queue_redraw();