add some printfs.

When calculating border minimum, use proper height variable from icccm.



SVN revision: 43940
This commit is contained in:
Christopher Michael 2009-11-23 23:37:24 +00:00
parent 8a4bb00bec
commit c4cc9e404e
2 changed files with 3 additions and 2 deletions

View File

@ -133,6 +133,7 @@ _e_kbd_slide(E_Kbd *kbd, int visible, double len)
static void
_e_kbd_hide(E_Kbd *kbd)
{
printf("Keyboard Hide\n");
if (kbd->visible) return;
if (il_cfg->sliding.kbd.duration <= 0)
{

View File

@ -218,7 +218,7 @@ Eina_Bool
illume_border_is_home(E_Border *bd)
{
if (((bd->client.icccm.name) &&
(strstr(bd->client.icccm.name, "Illume-Home"))) ||
(!strcmp(bd->client.icccm.name, "Illume-Home"))) ||
((bd->client.icccm.title) &&
(strstr(bd->client.icccm.title, "Home"))))
return 1;
@ -268,7 +268,7 @@ illume_border_min_get(E_Border *bd, int *mw, int *mh)
}
if (mh)
{
if (bd->client.icccm.base_w > bd->client.icccm.min_h)
if (bd->client.icccm.base_h > bd->client.icccm.min_h)
*mh = bd->client.icccm.base_h;
else
*mh = bd->client.icccm.min_h;