ImageViewer: Kindly ask the user if they want to delete a file

This commit is contained in:
Musab Kılıç 2021-09-04 02:11:28 +03:00 committed by Andreas Kling
parent 7dda773426
commit 7b45653331
Notes: sideshowbarker 2024-07-18 04:49:21 +09:00

View File

@ -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);