add another check for vmware windows, ticket #1057

This commit is contained in:
Mike Blumenkrantz 2013-04-25 11:50:48 +01:00
parent db72a84e58
commit 2353c5f2ac
3 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* added deskmirror
* improve efm mouse movement detection for icons
* add check for vmware window in another spot to disable key remapping
2013-04-19 Mike Blumenkrantz

1
NEWS
View File

@ -135,6 +135,7 @@ Improvements:
* startup splash screen moved to compositor canvas
* added new modes for notification display on multiple monitors
* improve efm mouse movement detection for icons
* add check for vmware window in another spot to disable key remapping
Fixes:
* IBar menu didn't allow to configure different icon sources, show contents menu even on empty IBar.

View File

@ -7150,7 +7150,8 @@ _e_border_eval0(E_Border *bd)
pclass = bd->client.icccm.class;
bd->client.icccm.name = eina_stringshare_add(nname);
bd->client.icccm.class = eina_stringshare_add(nclass);
if (bd->client.icccm.class && (!strcmp(bd->client.icccm.class, "Vmplayer")))
if ((!e_util_strcasecmp(bd->client.icccm.class, "vmplayer")) ||
(!e_util_strcasecmp(bd->client.icccm.class, "vmware")))
e_bindings_mapping_change_enable(EINA_FALSE);
free(nname);
free(nclass);