discomfitor pushed a commit to branch enlightenment-0.19.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=33d5ebb9fa01d5d92fbf97312b96bee5d516d860

commit 33d5ebb9fa01d5d92fbf97312b96bee5d516d860
Author: Sebastian Dransfeld <s...@tango.flipp.net>
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 033d11f..26f4a93 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;
 }
 

-- 


Reply via email to