diff options
author | Nico Weber <thakis@chromium.org> | 2021-01-26 10:06:25 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-26 21:02:46 +0100 |
commit | 09b881797f8a13a13f30613be2134a04da87d34e (patch) | |
tree | b217963b3261ab0c71f4f2ec9a8159ae516db177 | |
parent | ccfb3bef75b55570696c3fa51249add85882442e (diff) | |
download | serenity-09b881797f8a13a13f30613be2134a04da87d34e.zip |
LibGUI: Tweak "Overwrite file?" dialog text to use one sentence per sentence
-rw-r--r-- | Userland/Libraries/LibGUI/FilePicker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/FilePicker.cpp b/Userland/Libraries/LibGUI/FilePicker.cpp index fa51d0cc95..8471fa4a07 100644 --- a/Userland/Libraries/LibGUI/FilePicker.cpp +++ b/Userland/Libraries/LibGUI/FilePicker.cpp @@ -301,7 +301,7 @@ void FilePicker::on_file_return() LexicalPath path(String::formatted("{}/{}", m_model->root_path(), m_filename_textbox->text())); if (FilePicker::file_exists(path.string()) && m_mode == Mode::Save) { - auto result = MessageBox::show(this, "File already exists, overwrite?", "Existing File", MessageBox::Type::Warning, MessageBox::InputType::OKCancel); + auto result = MessageBox::show(this, "File already exists. Overwrite?", "Existing File", MessageBox::Type::Warning, MessageBox::InputType::OKCancel); if (result == MessageBox::ExecCancel) return; } |