From fdb365856d055967171c310d59df84058a1bce14 Mon Sep 17 00:00:00 2001 From: rhin123 Date: Mon, 15 Jul 2019 16:07:24 -0500 Subject: [PATCH] GFilePicker: Changed file_exists MessageBox to warning Forgot to remove Error in the title. Going to be replaced by YesNo GMessagebox in the future. --- Libraries/LibGUI/GFilePicker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/GFilePicker.cpp b/Libraries/LibGUI/GFilePicker.cpp index 3ac50850d5..0d197ad81d 100644 --- a/Libraries/LibGUI/GFilePicker.cpp +++ b/Libraries/LibGUI/GFilePicker.cpp @@ -40,7 +40,7 @@ Optional GFilePicker::get_save_filepath() if (GFilePicker::file_exists(file_path)) { //TODO: Add Yes, No Messagebox to give the user a proper option - GMessageBox::show("File already exists: Overwrite?\n", "Error", GMessageBox::Type::Information, &picker); + GMessageBox::show("File already exists: Overwrite?\n", "Warning", GMessageBox::Type::Warning, &picker); return file_path; }