From 2527687995e23d3ca671e625a39e0c751e7deea3 Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Wed, 18 May 2016 21:07:54 +0100 Subject: [PATCH] Bug 1272997 - followup 1a - Add missing braces, because the style guide likes them. rs=dholbert --- layout/generic/nsFrame.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layout/generic/nsFrame.cpp b/layout/generic/nsFrame.cpp index 09874ebd8770..6b5e41362233 100644 --- a/layout/generic/nsFrame.cpp +++ b/layout/generic/nsFrame.cpp @@ -9176,8 +9176,9 @@ nsFrame::BoxReflow(nsBoxLayoutState& aState, AddStateBits(NS_FRAME_IS_DIRTY); } } - if (metrics->mLastSize.height != aHeight) + if (metrics->mLastSize.height != aHeight) { reflowState.SetVResize(true); + } #ifdef DEBUG_REFLOW nsAdaptorAddIndents();