summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-08-30 20:08:21 +0200
committerGitHub <noreply@github.com>2019-08-30 20:08:21 +0200
commit9fc359411f6a65b318bafdbc7aa33c30c7e473ed (patch)
treefe5b563bcb0826f592146bf9392f0ae6511956c2
parentcffec896f9fc4c23cef448468ab50d45d4f04083 (diff)
parentb0805a1b5302b37fced85884baa8531e02104805 (diff)
Merge pull request #31803 from KoBeWi/minicursor
Don't change cursor when minimap is disabled
-rw-r--r--scene/gui/text_edit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/text_edit.cpp b/scene/gui/text_edit.cpp
index 06d9a393f9..65554b1f5e 100644
--- a/scene/gui/text_edit.cpp
+++ b/scene/gui/text_edit.cpp
@@ -4615,7 +4615,7 @@ Control::CursorShape TextEdit::get_cursor_shape(const Point2 &p_pos) const {
return CURSOR_ARROW;
} else {
int xmargin_end = get_size().width - cache.style_normal->get_margin(MARGIN_RIGHT);
- if (p_pos.x > xmargin_end - minimap_width && p_pos.x <= xmargin_end) {
+ if (draw_minimap && p_pos.x > xmargin_end - minimap_width && p_pos.x <= xmargin_end) {
return CURSOR_ARROW;
}