summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2021-01-26 10:06:25 -0500
committerAndreas Kling <kling@serenityos.org>2021-01-26 21:02:46 +0100
commit09b881797f8a13a13f30613be2134a04da87d34e (patch)
treeb217963b3261ab0c71f4f2ec9a8159ae516db177
parentccfb3bef75b55570696c3fa51249add85882442e (diff)
downloadserenity-09b881797f8a13a13f30613be2134a04da87d34e.zip
LibGUI: Tweak "Overwrite file?" dialog text to use one sentence per sentence
-rw-r--r--Userland/Libraries/LibGUI/FilePicker.cpp2
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;
}