Moved the prop convert button to the canvas editor. Also changed it's style.

This commit is contained in:
Relintai 2022-02-25 22:43:34 +01:00
parent 3c9ae1a391
commit 38a3678422
1 changed files with 1 additions and 7 deletions

View File

@ -118,19 +118,13 @@ Prop2DEditorPlugin::Prop2DEditorPlugin(EditorNode *p_node) {
#else #else
#endif #endif
HBoxContainer *container = memnew(HBoxContainer);
container->add_child(memnew(VSeparator));
Button *b = memnew(Button); Button *b = memnew(Button);
container->add_child(b);
b->set_flat(true);
b->CONNECT("pressed", this, Prop2DEditorPlugin, _quick_convert_button_pressed); b->CONNECT("pressed", this, Prop2DEditorPlugin, _quick_convert_button_pressed);
b->set_text("To Prop2D"); b->set_text("To Prop2D");
b->set_shortcut(ED_SHORTCUT("spatial_editor/quick_prop_convert", "Quick convert scene to Prop2DData.", KEY_MASK_ALT + KEY_U)); b->set_shortcut(ED_SHORTCUT("spatial_editor/quick_prop_convert", "Quick convert scene to Prop2DData.", KEY_MASK_ALT + KEY_U));
add_control_to_container(EditorPlugin::CONTAINER_SPATIAL_EDITOR_MENU, container); add_control_to_container(EditorPlugin::CONTAINER_CANVAS_EDITOR_MENU, b);
} }
Prop2DEditorPlugin::~Prop2DEditorPlugin() { Prop2DEditorPlugin::~Prop2DEditorPlugin() {