fix "hide instead of raise" for quickaccess

SVN revision: 81371
This commit is contained in:
Mike Blumenkrantz 2012-12-19 14:45:12 +00:00
parent be20b9d15d
commit 37767d960f
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ _e_qa_toggle_cb(E_Object *obj __UNUSED__, const char *params)
{
if (entry->help_watch)
_e_qa_help_activate_hook(entry);
if ((!entry->config.jump) && (entry->border->visible || (entry->border->client.icccm.accepts_focus && entry->border->focused) || entry->config.hide_when_behind))
if ((!entry->config.jump) && entry->border->visible && ((entry->border->client.icccm.accepts_focus && entry->border->focused) || entry->config.hide_when_behind))
{
_e_qa_border_deactivate(entry);
return;