diff options
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibGUI/MessageBox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/MessageBox.cpp b/Userland/Libraries/LibGUI/MessageBox.cpp index 6dde5e0657..416006a6e2 100644 --- a/Userland/Libraries/LibGUI/MessageBox.cpp +++ b/Userland/Libraries/LibGUI/MessageBox.cpp @@ -49,7 +49,7 @@ int MessageBox::ask_about_unsaved_changes(Window* parent_window, StringView path box->set_icon(parent_window->icon()); box->m_yes_button->set_text(path.is_empty() ? "Save As..." : "Save"); - box->m_no_button->set_text("Close"); + box->m_no_button->set_text("Discard"); box->m_cancel_button->set_text("Cancel"); return box->exec(); |