raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5180b69e334599616d95aaaf01ac6a41d0dfc247
commit 5180b69e334599616d95aaaf01ac6a41d0dfc247 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Dec 16 11:31:00 2014 +0900 e randr - restore edp checks the dp checks were looking for edp stuff. but due to naming they appeard as eDP or maybe edp or EDP - thus were simplified to dp. put more explicit checks there. --- src/bin/e_randr.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bin/e_randr.c b/src/bin/e_randr.c index c2042fe..d8c074e 100644 --- a/src/bin/e_randr.c +++ b/src/bin/e_randr.c @@ -1209,10 +1209,9 @@ _e_randr_is_lid(E_Randr_Output *cfg) else if (strstr(cfg->name, "lvds")) ret = 1; else if (strstr(cfg->name, "Lvds")) ret = 1; else if (strstr(cfg->name, "LCD")) ret = 1; -#if 0 - else if (strstr(cfg->name, "DP")) ret = 1; - else if (strstr(cfg->name, "dp")) ret = 1; -#endif + else if (strstr(cfg->name, "eDP")) ret = 1; + else if (strstr(cfg->name, "edp")) ret = 1; + else if (strstr(cfg->name, "EDP")) ret = 1; return ret; } --
