diff options
-rw-r--r-- | gui/ThemeLayout.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/ThemeLayout.cpp b/gui/ThemeLayout.cpp index e56438aef6..be14671e69 100644 --- a/gui/ThemeLayout.cpp +++ b/gui/ThemeLayout.cpp @@ -161,6 +161,7 @@ void ThemeLayoutStacked::reflowLayoutV() { _children[i]->setWidth((_w == -1 ? getParentW() : _w) - _padding.left - _padding.right); if (_children[i]->getHeight() == -1) { + assert(rescount < ARRAYSIZE(resize)); resize[rescount++] = i; _children[i]->setHeight(0); } @@ -209,6 +210,7 @@ void ThemeLayoutStacked::reflowLayoutH() { _children[i]->setHeight((_h == -1 ? getParentH() : _h) - _padding.top - _padding.bottom); if (_children[i]->getWidth() == -1) { + assert(rescount < ARRAYSIZE(resize)); resize[rescount++] = i; _children[i]->setWidth(0); } |