1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:38:11 +00:00

File Manager: Differentiate between navigation and rename errors

Adds a new on_rename_error handler and renames the old on_error handler
to on_directory_change_error in FileSystemModel. The on_rename_error
handler creates a MessageDialog with the error message.
This commit is contained in:
ls 2021-07-16 21:11:39 +02:00 committed by Andreas Kling
parent 35b930112f
commit fe7bacc2df
3 changed files with 11 additions and 6 deletions

View file

@ -214,7 +214,7 @@ const GUI::FileSystemModel::Node& DirectoryView::node(const GUI::ModelIndex& ind
void DirectoryView::setup_model()
{
m_model->on_error = [this](int, const char* error_string) {
m_model->on_directory_change_error = [this](int, const char* error_string) {
auto failed_path = m_model->root_path();
auto error_message = String::formatted("Could not read {}:\n{}", failed_path, error_string);
m_error_label->set_text(error_message);
@ -229,6 +229,10 @@ void DirectoryView::setup_model()
on_path_change(failed_path, false, false);
};
m_model->on_rename_error = [this](int, const char* error_string) {
GUI::MessageBox::show_error(window(), String::formatted("Unable to rename file: {}", error_string));
};
m_model->on_complete = [this] {
if (m_table_view)
m_table_view->selection().clear();