From 7b4565333114f21d7c5a10efc3c428d15a9cf89c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Musab=20K=C4=B1l=C4=B1=C3=A7?= Date: Sat, 4 Sep 2021 02:11:28 +0300 Subject: [PATCH] ImageViewer: Kindly ask the user if they want to delete a file --- Userland/Applications/ImageViewer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);