Fix issue where hiding quickpanel would not hide the 'clickwindow'.

SVN revision: 51697
This commit is contained in:
Christopher Michael 2010-08-28 14:27:54 +00:00
parent 6859f75f5a
commit 28206552ee
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ _e_mod_quickpanel_hide(E_Illume_Quickpanel *qp)
qp->timer = NULL;
/* if it's not visible, we can't hide it */
if ((!qp->visible) || (!qp->borders)) return;
if (!qp->visible) return;
duration = _e_illume_cfg->animation.quickpanel.duration;