浏览代码

Merge pull request #60987 from fire-forge/vertical-move

Use the move mouse cursor shape for the inspector array reorder button
Rémi Verschelde 3 年之前
父节点
当前提交
0736eed747
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      editor/editor_inspector.cpp

+ 1 - 0
editor/editor_inspector.cpp

@@ -1938,6 +1938,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")));
 		}