diff options
author | neikeq <ignalfonsore@gmail.com> | 2015-11-07 13:39:03 +0100 |
---|---|---|
committer | neikeq <ignalfonsore@gmail.com> | 2015-11-07 16:04:32 +0100 |
commit | b70e2b754d44eb360c6485029afc589c4476bfe8 (patch) | |
tree | 8e9ef5d4cb0d31ce6268acc26f2cbe35141d7d0d /scene/gui/text_edit.h | |
parent | 51fa997cb56f11a3ea304a8281bbe618195a1e80 (diff) |
TextEdit: Properly scroll vertically when selecting text with mouse drag
Diffstat (limited to 'scene/gui/text_edit.h')
-rw-r--r-- | scene/gui/text_edit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index 20089ac7f2..585fbee9bf 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -270,7 +270,7 @@ class TextEdit : public Control { void _confirm_completion(); void _update_completion_candidates(); - bool _get_mouse_pos(const Point2i& p_mouse, int &r_row, int &r_col) const; + void _get_mouse_pos(const Point2i& p_mouse, int &r_row, int &r_col) const; protected: |