mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:07:35 +00:00
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:
parent
810c23b422
commit
0f831dbcc7
1 changed files with 3 additions and 0 deletions
|
@ -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());
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue