diff options
| author | Franklin Sobrinho | 2015-10-18 15:13:17 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2015-10-18 15:13:17 -0300 |
| commit | ec394950ff7c8213768c9dfb2668f5d65bfdc07a (patch) | |
| tree | de23a73507382da97b82af82249c978c35c55350 | |
| parent | abde648e6844fa328affed0f1002f56edb4ab69c (diff) | |
| download | godot-ec394950ff7c8213768c9dfb2668f5d65bfdc07a.tar.gz godot-ec394950ff7c8213768c9dfb2668f5d65bfdc07a.tar.zst godot-ec394950ff7c8213768c9dfb2668f5d65bfdc07a.zip | |
Change MeshInstanceEditor outline dialog "Ok" button label
| -rw-r--r-- | tools/editor/plugins/mesh_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/mesh_editor_plugin.cpp b/tools/editor/plugins/mesh_editor_plugin.cpp index 34ccf79fe..cea774f94 100644 --- a/tools/editor/plugins/mesh_editor_plugin.cpp +++ b/tools/editor/plugins/mesh_editor_plugin.cpp @@ -212,7 +212,6 @@ MeshInstanceEditor::MeshInstanceEditor() { options = memnew( MenuButton ); - //add_child(options); SpatialEditor::get_singleton()->add_control_to_menu_panel(options); options->set_text("Mesh"); @@ -232,6 +231,7 @@ MeshInstanceEditor::MeshInstanceEditor() { outline_dialog = memnew( ConfirmationDialog ); outline_dialog->set_title("Create Outline Mesh"); + outline_dialog->get_ok()->set_text("Create"); VBoxContainer *outline_dialog_vbc = memnew( VBoxContainer ); outline_dialog->add_child(outline_dialog_vbc); |
