You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Fix polygon node losing its UV toolbar by adding a call to the show method when assinging a node.
Fixes #96238
This commit is contained in:
@@ -748,7 +748,9 @@ AbstractPolygon2DEditor::AbstractPolygon2DEditor(bool p_wip_destructive) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AbstractPolygon2DEditorPlugin::edit(Object *p_object) {
|
void AbstractPolygon2DEditorPlugin::edit(Object *p_object) {
|
||||||
polygon_editor->edit(Object::cast_to<Node>(p_object));
|
Node *polygon_node = Object::cast_to<Node>(p_object);
|
||||||
|
polygon_editor->edit(polygon_node);
|
||||||
|
make_visible(polygon_node != nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool AbstractPolygon2DEditorPlugin::handles(Object *p_object) const {
|
bool AbstractPolygon2DEditorPlugin::handles(Object *p_object) const {
|
||||||
|
|||||||
Reference in New Issue
Block a user