summaryrefslogtreecommitdiff
path: root/render/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/layout.c')
-rw-r--r--render/layout.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/layout.c b/render/layout.c
index 9827cda28..9bd1156ab 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -1059,9 +1059,10 @@ void layout_get_object_dimensions(struct box *box, int *width, int *height,
scaled = true;
}
- if (scaled)
+ if (scaled && (intrinsic_width != 0)) {
*height = (*width * intrinsic_height) /
intrinsic_width;
+ }
} else if (*width == AUTO) {
/* Have given height; width is calculated from the given height