mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
d4f1c1faed
3 changed files with 27 additions and 8 deletions
|
|
@ -3793,10 +3793,25 @@ MeasuringReflow(nsIFrame* aChild,
|
|||
nsIFrame::ReflowChildFlags::NoMoveFrame |
|
||||
nsIFrame::ReflowChildFlags::NoSizeView |
|
||||
nsIFrame::ReflowChildFlags::NoDeleteNextInFlowChild;
|
||||
parent->ReflowChild(aChild, pc, childSize, childRI, wm,
|
||||
LogicalPoint(wm), nsSize(), flags, childStatus);
|
||||
parent->FinishReflowChild(aChild, pc, childSize, &childRI, wm,
|
||||
LogicalPoint(wm), nsSize(), flags);
|
||||
if (childSize.mBoundingMetrics.width != 0) {
|
||||
parent->ReflowChild(aChild,
|
||||
pc,
|
||||
childSize,
|
||||
childRI,
|
||||
wm,
|
||||
LogicalPoint(wm),
|
||||
nsSize(),
|
||||
flags,
|
||||
childStatus);
|
||||
parent->FinishReflowChild(aChild,
|
||||
pc,
|
||||
childSize,
|
||||
&childRI,
|
||||
wm,
|
||||
LogicalPoint(wm),
|
||||
nsSize(),
|
||||
flags);
|
||||
}
|
||||
#ifdef DEBUG
|
||||
parent->DeleteProperty(nsContainerFrame::DebugReflowingWithInfiniteISize());
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue