add another check for vmware windows, ticket #1057

devs/devilhorns/e_wayland
Mike Blumenkrantz 11 years ago
parent db72a84e58
commit 2353c5f2ac
  1. 1
      ChangeLog
  2. 1
      NEWS
  3. 3
      src/bin/e_border.c

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

@ -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.

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

Loading…
Cancel
Save