Title: [293134] branches/safari-613-branch/Source/WebCore/rendering/RenderGrid.cpp
Revision
293134
Author
[email protected]
Date
2022-04-20 17:47:28 -0700 (Wed, 20 Apr 2022)

Log Message

Unreviewed build fix. rdar://88512506

Correction to r293125.

Modified Paths

Diff

Modified: branches/safari-613-branch/Source/WebCore/rendering/RenderGrid.cpp (293133 => 293134)


--- branches/safari-613-branch/Source/WebCore/rendering/RenderGrid.cpp	2022-04-21 00:45:59 UTC (rev 293133)
+++ branches/safari-613-branch/Source/WebCore/rendering/RenderGrid.cpp	2022-04-21 00:47:28 UTC (rev 293134)
@@ -474,7 +474,7 @@
 
         computeTrackSizesForIndefiniteSize(algorithm, ForColumns, &minLogicalWidth, &maxLogicalWidth);
     } else {
-        LayoutUnit totalGuttersSize = guttersSize(m_grid, ForColumns, 0, numTracks(ForColumns, m_grid), std::nullopt);
+        LayoutUnit totalGuttersSize = guttersSize(m_grid, ForColumns, 0, numTracks(ForColumns, grid), std::nullopt);
         minLogicalWidth = *m_minContentSize + totalGuttersSize;
         maxLogicalWidth = *m_maxContentSize + totalGuttersSize;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to