discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=38adb8db89f93bedf247be7552bda0649c49bb1c
commit 38adb8db89f93bedf247be7552bda0649c49bb1c Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> 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 26f4a93..0467c8a 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; } --