add evdev keyboard model to list

SVN revision: 80303
This commit is contained in:
Mike Blumenkrantz 2012-12-06 07:38:47 +00:00
parent 503d7305db
commit 99a916394b
1 changed files with 5 additions and 0 deletions

View File

@ -72,6 +72,11 @@ parse_rules(void)
model->description = eina_stringshare_add("Automatic");
models = eina_list_append(models, model);
model = E_NEW(E_XKB_Model, 1);
model->name = eina_stringshare_add("evdev");
model->description = eina_stringshare_add("evdev");
models = eina_list_append(models, model);
/* read models here */
for (;; )
{