2
0
Эх сурвалжийг харах

Disable base type changing when no type is selected in the theme editor

Michael Alexsander 3 жил өмнө
parent
commit
3ff78c34e7

+ 2 - 2
editor/plugins/theme_editor_plugin.cpp

@@ -2581,11 +2581,11 @@ void ThemeTypeEditor::_update_type_items() {
 	}
 	}
 
 
 	// Various type settings.
 	// Various type settings.
-	if (ClassDB::class_exists(edited_type)) {
+	if (edited_type.is_empty() || ClassDB::class_exists(edited_type)) {
 		type_variation_edit->set_editable(false);
 		type_variation_edit->set_editable(false);
 		type_variation_edit->set_text("");
 		type_variation_edit->set_text("");
 		type_variation_button->hide();
 		type_variation_button->hide();
-		type_variation_locked->show();
+		type_variation_locked->set_visible(!edited_type.is_empty());
 	} else {
 	} else {
 		type_variation_edit->set_editable(true);
 		type_variation_edit->set_editable(true);
 		type_variation_edit->set_text(edited_theme->get_type_variation_base(edited_type));
 		type_variation_edit->set_text(edited_theme->get_type_variation_base(edited_type));