summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/widgets/layout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/layout.cpp b/src/gui/widgets/layout.cpp
index ad474cf63..3dc4eb038 100644
--- a/src/gui/widgets/layout.cpp
+++ b/src/gui/widgets/layout.cpp
@@ -335,7 +335,7 @@ void LayoutArray::reflow(int nx, int ny, int nw, int nh)
LayoutCell *cell = mCells[gridY][gridX];
if (cell && cell->mType != LayoutCell::NONE)
{
- int dx = x, dy = y, dw, dh;
+ int dx = x, dy = y, dw = 0, dh = 0;
align(dx, dw, 0, *cell, &widths[gridX]);
align(dy, dh, 1, *cell, &heights[gridY]);
cell->reflow(dx, dy, dw, dh);