diff options
author | Musab Kılıç <musabkilic@protonmail.com> | 2021-09-04 02:11:28 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-04 03:22:46 +0200 |
commit | 7b4565333114f21d7c5a10efc3c428d15a9cf89c (patch) | |
tree | a639ef7a98e9a2d2cc95d0e81744d2669ef430b6 /Userland/Applications | |
parent | 7dda773426881fa54354c23677aaa911608b3eb9 (diff) | |
download | serenity-7b4565333114f21d7c5a10efc3c428d15a9cf89c.zip |
ImageViewer: Kindly ask the user if they want to delete a file
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/ImageViewer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/ImageViewer/main.cpp b/Userland/Applications/ImageViewer/main.cpp index bbc5453da0..7a31c52786 100644 --- a/Userland/Applications/ImageViewer/main.cpp +++ b/Userland/Applications/ImageViewer/main.cpp @@ -128,7 +128,7 @@ int main(int argc, char** argv) return; auto msgbox_result = GUI::MessageBox::show(window, - String::formatted("Really delete {}?", path), + String::formatted("Are you sure you want to delete {}?", path), "Confirm deletion", GUI::MessageBox::Type::Warning, GUI::MessageBox::InputType::OKCancel); |