[PATCH] clients: Fix height typo in clamp_view()
Bryce Harrington
bryce at osg.samsung.com
Tue Sep 8 19:24:12 PDT 2015
We should be checking our scaled image height against the allocation
height rather than the allocation width.
Signed-off-by: Bryce Harrington <bryce at osg.samsung.com>
---
clients/image.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clients/image.c b/clients/image.c
index d28f221..4126305 100644
--- a/clients/image.c
+++ b/clients/image.c
@@ -93,7 +93,7 @@ clamp_view(struct image *image)
image->matrix.x0 = allocation.width - sw;
}
- if (sh < allocation.width) {
+ if (sh < allocation.height) {
image->matrix.y0 =
(allocation.height - image->height * scale) / 2;
} else {
--
1.9.1
More information about the wayland-devel
mailing list