[DeckEditor] Address custom-zone menu and export review feedback

This commit is contained in:
Lukas Brübach 2026-08-30 22:42:26 +02:00
parent 3f62022d07
commit c19d3896a6
13 changed files with 182 additions and 84 deletions

View file

@ -94,6 +94,9 @@ AbstractDecklistNode *InnerDecklistNode::findCardChildByNameProviderIdAndNumber(
int InnerDecklistNode::height() const
{
if (isEmpty()) {
return 1;
}
return at(0)->height() + 1;
}