fixed show in people tab

This commit is contained in:
csoler 2025-03-31 21:29:43 +02:00
parent c8f71072b0
commit 59d6592855

View File

@ -240,9 +240,9 @@ uint32_t RsIdentityListModel::EntryIndex::parentRow() const
switch(type)
{
default:
case ENTRY_TYPE_TOP_LEVEL: return 0;
case ENTRY_TYPE_CATEGORY : return category_index;
case ENTRY_TYPE_IDENTITY : return identity_index;
case ENTRY_TYPE_TOP_LEVEL: return -1;
case ENTRY_TYPE_CATEGORY : return -1;
case ENTRY_TYPE_IDENTITY : return category_index;
}
}