From a369bc7325073913df826817e6fb20b1c6188572 Mon Sep 17 00:00:00 2001 From: FireForge <67974470+fire-forge@users.noreply.github.com> Date: Thu, 12 May 2022 16:20:12 -0500 Subject: [PATCH] Use the "Move" mouse icon in inspector arrays --- editor/editor_inspector.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 4bc37456d50..0931c3245a8 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -1939,6 +1939,7 @@ void EditorInspectorArray::_setup() { // Move button. ae.move_texture_rect = memnew(TextureRect); ae.move_texture_rect->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); + ae.move_texture_rect->set_default_cursor_shape(Control::CURSOR_MOVE); if (is_inside_tree()) { ae.move_texture_rect->set_texture(get_theme_icon(SNAME("TripleBar"), SNAME("EditorIcons"))); }