! Please note that this is a snapshot of our old Bugzilla server, which is read only since May 29, 2020. Please go to gitlab.xfce.org for our new server !
Make xfwm alt-tab skip over panels
Status:
CLOSED: FIXED

Comments

Description huggie 2004-03-29 21:24:39 CEST
This is a Debian bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=226750

If you run xfwm4 as your window manager but use the gnome-panel (don't ask me
why... ;)) when you alt-tab you can alt-tab to the panel which is useless.

The patch to remove this behaviour (against 4.0.2) is apparently:
--- old/xfwm4-4.0.2/src/client.c
+++ xfwm4-4.0.2/src/client.c
@@ -3563,7 +3563,8 @@
c2 = c2->next, i++)
{
if ((c2->type == WINDOW_SPLASHSCREEN)
- || (c2->type == WINDOW_DESKTOP))
+ || (c2->type == WINDOW_DESKTOP)
+ || (c2->type == WINDOW_DOCK)) /* these 3 are the same as
WINDOW_TYPE_DONT_PLACE */
{
continue;
}


Hopefully that's enough of an idea for you to give your verdict on this.
Comment 1 Olivier Fourdan editbugs 2004-03-30 19:13:34 CEST
A similar patch is already in CVS xfce_4_0 (upcoming 4.0.5) and HEAD:

if (c2->type & (WINDOW_SPLASHSCREEN | WINDOW_DOCK | WINDOW_DESKTOP))
{
continue;
}

Thanks, btw, for your contribution.
Olivier.
Comment 2 Brian J. Tarricone (not reading bugmail) 2004-04-08 19:21:38 CEST
mass stale bug cleanup - reopen if closed in error

Bug #163

Reported by:
huggie
Reported on: 2004-03-29
Last modified on: 2009-07-14

People

Assignee:
Olivier Fourdan
CC List:
0 users

Version

Version:
unspecified

Attachments

Additional information