From 75b80031ebdbdddda722f3c119667d47410dc150 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 5 Jul 2012 14:04:51 +0000 Subject: [PATCH] fix shelf autohiding in some cases where only 1px was visible -- not enough to extend past the edge flip 1x1 box -- so now mouse in events get handled properly SVN revision: 73350 --- src/bin/e_shelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c index babb29bab..5d22e2b09 100644 --- a/src/bin/e_shelf.c +++ b/src/bin/e_shelf.c @@ -1688,7 +1688,7 @@ _e_shelf_cb_hide_animator(void *data) case E_GADCON_ORIENT_BOTTOM: case E_GADCON_ORIENT_CORNER_BL: case E_GADCON_ORIENT_CORNER_BR: - hide_max = es->h - es->hidden_state_size; + hide_max = es->h - es->hidden_state_size - 1; if (es->hide_origin == -1) es->hide_origin = es->y; break;