ClipboardHistory: Don't attempt to delete an item if nothing is selected

This prevents a crash if the delete action is invoked using the delete
key while nothing is selected.
This commit is contained in:
Tim Ledbetter 2023-01-15 14:07:08 +00:00 committed by Jelle Raaijmakers
parent 810c23b422
commit 0f831dbcc7

View file

@ -43,6 +43,9 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
};
auto delete_action = GUI::CommonActions::make_delete_action([&](const GUI::Action&) {
if (table_view->selection().is_empty())
return;
model->remove_item(table_view->selection().first().row());
});