diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-09-25 22:44:50 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-09-25 22:51:13 +0200 |
commit | c4770a5b5d32583c682268ec802fada1c1b30647 (patch) | |
tree | 1663fc4339639e17c43eb05779674f6cb4a22547 /scene/gui | |
parent | 8fc92ae86faed72c402e7770246ed18d50b5c43b (diff) |
Tweak some editor texts' capitalization, use "Go to" instead of "Goto"
This also fixes a typo in the `debugger/debug_with_external_editor`
shortcut.
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 12349e0983..dc18895298 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1993,7 +1993,7 @@ Control *Control::find_prev_valid_focus() const { if (!from) { - ERR_EXPLAIN("Prev focus node is not a control: " + n->get_name()); + ERR_EXPLAIN("Previous focus node is not a control: " + n->get_name()); ERR_FAIL_V(NULL); } } else { |