configure_hotkeys: Make comparison check a little more self-documenting
This is checking if an index is valid or not and returning early if it isn't.
This commit is contained in:
parent
c33c27d646
commit
47176e19be
|
@ -70,8 +70,9 @@ void ConfigureHotkeys::OnInputKeysChanged(QList<QKeySequence> new_key_list) {
|
|||
}
|
||||
|
||||
void ConfigureHotkeys::Configure(QModelIndex index) {
|
||||
if (index.parent() == QModelIndex())
|
||||
if (!index.parent().isValid()) {
|
||||
return;
|
||||
}
|
||||
|
||||
index = index.sibling(index.row(), 1);
|
||||
auto* model = ui->hotkey_list->model();
|
||||
|
|
Loading…
Reference in New Issue