diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-07-13 14:10:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 14:10:38 +0200 |
commit | b942c1ffe3dc8f7ea45f9d535700740d78e38543 (patch) | |
tree | 0ca4f39588aff239b68e9c38ade4839bb8a8bf04 /editor/groups_editor.cpp | |
parent | dd1951355ded10df8469dd1ee04e279981a8f981 (diff) | |
parent | e4067064cecd71914691580447d77de9bbc3d0b6 (diff) | |
download | redot-engine-b942c1ffe3dc8f7ea45f9d535700740d78e38543.tar.gz |
Merge pull request #62827 from fire-forge/ok-cancel
Add `ok_button_text` to AcceptDialog and `cancel_button_text` to ConfirmationDialog
Diffstat (limited to 'editor/groups_editor.cpp')
-rw-r--r-- | editor/groups_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/groups_editor.cpp b/editor/groups_editor.cpp index 5dc81f623d..bca8c95574 100644 --- a/editor/groups_editor.cpp +++ b/editor/groups_editor.cpp @@ -568,7 +568,7 @@ GroupDialog::GroupDialog() { error = memnew(ConfirmationDialog); add_child(error); - error->get_ok_button()->set_text(TTR("Close")); + error->set_ok_button_text(TTR("Close")); _add_group_text_changed(""); } |