From c5ade50c9f9a7297db69f47fc12787b266a76b41 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 20 Feb 2013 17:16:54 +0900 Subject: [PATCH] Fix ecore-x edid fetch to ftech 128, not 100 bytes. --- ChangeLog | 4 ++++ NEWS | 2 ++ src/lib/ecore_x/xlib/ecore_x_randr.c | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8e8251947b..8bbb585492 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-02-20 Carsten Haitzler (The Rasterman) + + * Fix ecore-x edid fetch to ftech 128, not 100 bytes. + 2013-02-20 Cedric Bail * Properly report file not found in Edje. diff --git a/NEWS b/NEWS index 8fa05e627a..cff0943344 100644 --- a/NEWS +++ b/NEWS @@ -175,3 +175,5 @@ Fixes: * Fix edje_color_class_list() and edje_text_class_list() to look at right hashes. * Evas: Fix Evas_Object_Text when LTR and RTL are used in the same paragraph. * Properly report file not found in Edje. + * Fix ecore-x edid fetch to ftech 128, not 100 bytes. + diff --git a/src/lib/ecore_x/xlib/ecore_x_randr.c b/src/lib/ecore_x/xlib/ecore_x_randr.c index ec016dbc0f..bda1c9e428 100644 --- a/src/lib/ecore_x/xlib/ecore_x_randr.c +++ b/src/lib/ecore_x/xlib/ecore_x_randr.c @@ -2698,7 +2698,7 @@ ecore_x_randr_output_edid_get(Ecore_X_Window root EINA_UNUSED, Ecore_X_Randr_Out /* get the output property * * NB: Returns 0 on success */ - if (!XRRGetOutputProperty(_ecore_x_disp, output, edid, 0, 100, False, False, + if (!XRRGetOutputProperty(_ecore_x_disp, output, edid, 0, 128, False, False, AnyPropertyType, &type, &format, &nitems, &bytes, &prop)) {