mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix copy/paste mistake with growing views.
This commit is contained in:
parent
f0812297a6
commit
9fa6777c3e
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ void LinearLayout::Measure(const UIContext &dc, MeasureSpec horiz, MeasureSpec v
|
|||
}
|
||||
}
|
||||
|
||||
if (vert.type == AT_MOST && measuredWidth_ < vert.size) {
|
||||
if (vert.type == AT_MOST && measuredHeight_ < vert.size) {
|
||||
measuredHeight_ += usedHeight;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue