diff options
| author | Rémi Verschelde | 2016-07-24 17:55:12 +0200 |
|---|---|---|
| committer | GitHub | 2016-07-24 17:55:12 +0200 |
| commit | f8f3f302487d14976dca8181148ec189bccbc658 (patch) | |
| tree | f801fb0d7673476dc9ab31f61b512382932e3827 /tools/editor/code_editor.h | |
| parent | 6b0a810970b76e54cbd874228db01e0b0a74504d (diff) | |
| parent | 60d937354790ac025ba0caef17a3ca7c81244492 (diff) | |
| download | godot-f8f3f302487d14976dca8181148ec189bccbc658.tar.gz godot-f8f3f302487d14976dca8181148ec189bccbc658.tar.zst godot-f8f3f302487d14976dca8181148ec189bccbc658.zip | |
Merge pull request #5893 from akien-mga/pr-invisible-col
Fix non-visible col number in text editor
Diffstat (limited to 'tools/editor/code_editor.h')
| -rw-r--r-- | tools/editor/code_editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/code_editor.h b/tools/editor/code_editor.h index 7983c46f7..88d882bd3 100644 --- a/tools/editor/code_editor.h +++ b/tools/editor/code_editor.h @@ -196,7 +196,8 @@ class CodeTextEditor : public VBoxContainer { TextEdit *text_editor; FindReplaceBar *find_replace_bar; - Label *line_col; + Label *line_nb; + Label *col_nb; Label *info; Timer *idle; Timer *code_complete_timer; |
