randr - discovered new output names that are display panels in laptops

add to the list like lvds, edp etc. ... adding DSI/dsi
This commit is contained in:
Carsten Haitzler 2017-07-26 09:16:04 +09:00
parent 84bf48b3ed
commit d7b2d6c496
1 changed files with 2 additions and 0 deletions

View File

@ -112,6 +112,8 @@ _is_lid_name(const char *name)
else if (strstr(name, "eDP")) return EINA_TRUE;
else if (strstr(name, "edp")) return EINA_TRUE;
else if (strstr(name, "EDP")) return EINA_TRUE;
else if (strstr(name, "DSI")) return EINA_TRUE;
else if (strstr(name, "dsi")) return EINA_TRUE;
return EINA_FALSE;
}