backport vmware commit

SVN revision: 83735
This commit is contained in:
Mike Blumenkrantz 2013-02-07 11:45:17 +00:00
parent 8af4a8c925
commit 719b0dc526
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-02-07 Mike Blumenkrantz
* keyboard mapping change now also disables for window class "vmware"
2013-02-07 Cedric Bail
* enable image preloading for all e_widget_preview using edje

1
NEWS
View File

@ -29,6 +29,7 @@ Fixes:
* fix filemanager efreet cache listeners and updates
* fix clock timerfd usage to actually detect date changes
* enable image preloading for all e_widget_preview using edje
* keyboard mapping change now also disables for window class "vmware"
Changes since 0.17.0:

View File

@ -5041,7 +5041,7 @@ _e_border_free(E_Border *bd)
eina_stringshare_del(bd->client.icccm.name);
if (bd->client.icccm.class)
{
if (!strcmp(bd->client.icccm.class, "Vmplayer"))
if ((!strcasecmp(bd->client.icccm.class, "vmplayer")) || (!strcasecmp(bd->client.icccm.class, "vmware")))
e_bindings_mapping_change_enable(EINA_TRUE);
eina_stringshare_del(bd->client.icccm.class);
}