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/quick_open.cpp | |
parent | dd1951355ded10df8469dd1ee04e279981a8f981 (diff) | |
parent | e4067064cecd71914691580447d77de9bbc3d0b6 (diff) |
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/quick_open.cpp')
-rw-r--r-- | editor/quick_open.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/quick_open.cpp b/editor/quick_open.cpp index 4938699fc4..4f7f9fc78c 100644 --- a/editor/quick_open.cpp +++ b/editor/quick_open.cpp @@ -263,6 +263,6 @@ EditorQuickOpen::EditorQuickOpen() { search_options->add_theme_constant_override("draw_guides", 1); vbc->add_margin_child(TTR("Matches:"), search_options, true); - get_ok_button()->set_text(TTR("Open")); + set_ok_button_text(TTR("Open")); set_hide_on_ok(false); } |