1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 02:15:08 +00:00

SystemMonitor: Fix PID selection after GModelSelection changes

This commit is contained in:
Andreas Kling 2019-09-07 19:59:03 +02:00
parent 98a68c82bc
commit 9c1fa0bd51

View file

@ -28,7 +28,7 @@ void ProcessTableView::refresh()
pid_t ProcessTableView::selected_pid() const
{
if (!model()->selected_index().is_valid())
if (selection().is_empty())
return -1;
return model()->data(model()->index(model()->selected_index().row(), ProcessModel::Column::PID), GModel::Role::Sort).as_int();
return model()->data(model()->index(selection().first().row(), ProcessModel::Column::PID), GModel::Role::Sort).as_int();
}