From 7f431dcda68b3b25434981a616eb0d42e2a83494 Mon Sep 17 00:00:00 2001 From: Gwanglim Lee Date: Fri, 16 Oct 2015 13:28:53 +0900 Subject: [PATCH] e_comp_wl: fix unit of wl_output's refresh value to be mHz Change-Id: I3a592f1c079b56341a8072bacd97ecabb351f20a --- src/bin/e_comp_wl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index e17be3e..6f6e04b 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -4066,7 +4066,7 @@ _e_comp_wl_output_get(Eina_List *outputs, const char *id) * @param h output's height in pixels * @param pw output's physical width in millimeters * @param ph output's physical height in millimeters - * @param refresh output's refresh rate in Hz + * @param refresh output's refresh rate in mHz * @param subpixel output's subpixel layout * @param transform output's rotation and/or mirror transformation */ @@ -4110,7 +4110,7 @@ e_comp_wl_output_init(const char *id, const char *make, const char *model, int x output->h = h; output->phys_width = pw; output->phys_height = ph; - output->refresh = refresh * 1000; + output->refresh = refresh; output->subpixel = subpixel; output->transform = transform; -- 2.7.4