englebass pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=074779b460ccb5ef529b2504c54e2ab4778685ca
commit 074779b460ccb5ef529b2504c54e2ab4778685ca Author: Sebastian Dransfeld <[email protected]> Date: Mon Dec 15 12:51:16 2014 +0100 randr: Don't match DP as LID On my intel laptop DP are my DisplayPort connections, not LID. --- src/bin/e_randr.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_randr.c b/src/bin/e_randr.c index 6ca78b6..c2042fe 100644 --- a/src/bin/e_randr.c +++ b/src/bin/e_randr.c @@ -1209,8 +1209,10 @@ _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 return ret; } --
