From 9980082c6acbb4a4849cc5fcc520907d3969bfd8 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Wed, 10 Dec 2014 12:00:22 -0500 Subject: [PATCH] ecore-drm: Also update device calibration when output size changes Summary: When the output size gets updated, it could end up changing the device calibration (wrt input event transformation), so we should update the device calibration also @fix Signed-off-by: Chris Michael --- src/lib/ecore_drm/ecore_drm_inputs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ecore_drm/ecore_drm_inputs.c b/src/lib/ecore_drm/ecore_drm_inputs.c index 05a744a..1ba00a5 100644 --- a/src/lib/ecore_drm/ecore_drm_inputs.c +++ b/src/lib/ecore_drm/ecore_drm_inputs.c @@ -207,6 +207,7 @@ _ecore_drm_inputs_update_output(Ecore_Drm_Device *dev, int w, int h) { edev->output.w = w; edev->output.h = h; + ecore_drm_inputs_device_axis_size_set(edev, w, h); } } } -- 2.7.4