randr: Don't match DP as LID

On my intel laptop DP are my DisplayPort connections, not LID.
This commit is contained in:
Sebastian Dransfeld 2014-12-15 12:51:16 +01:00 committed by Mike Blumenkrantz
parent cd94ed7052
commit 33d5ebb9fa
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}