Fix lib table index breakage on removing rows

This commit is contained in:
qu1ck 2023-01-08 18:18:12 -08:00 committed by Seth Hillbrand
parent f99e374559
commit 9298defd3f
1 changed files with 1 additions and 0 deletions

View File

@ -465,6 +465,7 @@ public:
if( *iter == *aRow )
{
rows.erase( iter, iter + 1 );
reindex();
return true;
}
}