소스 검색

Fix focus behavior in the Add Item Type dialog of the Theme editor

Yuri Sizov 4 년 전
부모
커밋
4bcdbf1280
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      editor/plugins/theme_editor_plugin.cpp

+ 6 - 0
editor/plugins/theme_editor_plugin.cpp

@@ -2015,6 +2015,12 @@ void ThemeTypeDialog::_notification(int p_what) {
 		case NOTIFICATION_THEME_CHANGED: {
 			_update_add_type_options();
 		} break;
+
+		case NOTIFICATION_VISIBILITY_CHANGED: {
+			if (is_visible()) {
+				add_type_filter->grab_focus();
+			}
+		} break;
 	}
 }