better detection for a home window.

SVN revision: 43830
This commit is contained in:
Christopher Michael 2009-11-20 17:21:10 +00:00
parent be5c2fad69
commit 7be16ae569
1 changed files with 2 additions and 1 deletions

View File

@ -220,7 +220,8 @@ Eina_Bool
illume_border_is_home(E_Border *bd)
{
if ((bd->client.icccm.name) &&
(strstr(bd->client.icccm.name, "Illume-Home")))
(strstr(bd->client.icccm.name, "Illume-Home")) ||
(strstr(bd->client.icccm.title, "Home")))
return 1;
return 0;
}