this fixes pypanel.. heh.
don't activate iconic windows when they raise themselves just raise them. firefox still works so i am happy.
This commit is contained in:
parent
65d50861ad
commit
775d5da7ad
1 changed files with 3 additions and 3 deletions
|
@ -562,7 +562,7 @@ void stacking_restack_request(ObClient *client, ObClient *sibling,
|
|||
case Above:
|
||||
ob_debug("Restack request Above for client %s sibling %s\n",
|
||||
client->title, sibling ? sibling->title : "(all)");
|
||||
if (activate)
|
||||
if (activate && !client->iconic)
|
||||
/* use user=TRUE because it is impossible to get a timestamp
|
||||
for this */
|
||||
client_activate(client, FALSE, TRUE);
|
||||
|
@ -573,7 +573,7 @@ void stacking_restack_request(ObClient *client, ObClient *sibling,
|
|||
ob_debug("Restack request TopIf for client %s sibling %s\n",
|
||||
client->title, sibling ? sibling->title : "(all)");
|
||||
if (stacking_occluded(client, sibling)) {
|
||||
if (activate)
|
||||
if (activate && !client->iconic)
|
||||
/* use user=TRUE because it is impossible to get a timestamp
|
||||
for this */
|
||||
client_activate(client, FALSE, TRUE);
|
||||
|
@ -586,7 +586,7 @@ void stacking_restack_request(ObClient *client, ObClient *sibling,
|
|||
"%s\n",
|
||||
client->title, sibling ? sibling->title : "(all)");
|
||||
if (stacking_occluded(client, sibling)) {
|
||||
if (activate)
|
||||
if (activate && !client->iconic)
|
||||
/* use user=TRUE because it is impossible to get a timestamp
|
||||
for this */
|
||||
client_activate(client, FALSE, TRUE);
|
||||
|
|
Loading…
Reference in a new issue