Package: icewm Version: 1.3.7-1 Severity: minor Tags: upstream *** Please type your report below this line ***
The quick switch window (alt-tab) should not include windows with _NET_WM_STATE_SKIP_TASKBAR hint. Attached is a patch that implements this change. I understand that upstream is almost dead (20 months since last release) so debian is probably the best point on the chain to submit it. Thanks, Horacio J. Peña -- System Information: Debian Release: wheezy/sid APT prefers oneiric-updates APT policy: (500, 'oneiric-updates'), (500, 'oneiric-security'), (500, 'oneiric'), (100, 'oneiric-backports') Architecture: amd64 (x86_64) Kernel: Linux 3.0.0-12-generic (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages icewm depends on: ii icewm-common 1.3.7-1 wonderful Win95-OS/2-Motif-like wi ii libc6 2.13-20ubuntu5 Embedded GNU C Library: Shared lib ii libesd0 0.2.41-9 Enlightened Sound Daemon - Shared ii libfontconfig1 2.8.0-3ubuntu2 generic font configuration library ii libgcc1 1:4.6.1-9ubuntu3 GCC support library ii libgdk-pixbuf2.0-0 2.24.0-1ubuntu1 GDK Pixbuf library ii libglib2.0-0 2.30.0-0ubuntu4 GLib library of C routines ii libice6 2:1.0.7-2 X11 Inter-Client Exchange library ii libsm6 2:1.2.0-2 X11 Session Management library ii libx11-6 2:1.4.4-2ubuntu1 X11 client-side library ii libxext6 2:1.3.0-3 X11 miscellaneous extension librar ii libxft2 2.2.0-3ubuntu1 FreeType-based font drawing librar ii libxinerama1 2:1.1.1-3 X11 Xinerama extension library ii libxrandr2 2:1.3.2-2 X11 RandR extension library icewm recommends no packages. Versions of packages icewm suggests: ii icewm-gnome-support 1.3.7-1 GNOME support files for IceWM pn ttf-bitstream-vera <none> (no description available) -- no debconf information
--- icewm-1.3.7_/src/wmswitch.cc 2012-01-02 01:03:25.197843648 -0300 +++ icewm-1.3.7/src/wmswitch.cc 2010-10-31 11:09:36.000000000 -0300 @@ -460,8 +460,7 @@ } } - if (w->isSkipTaskBar()) { - } else if (w == fRoot->getFocus()) { + if (w == fRoot->getFocus()) { if (pass == 0) list[count++] = w; } else if (w->isUrgent()) { if (pass == 1) list[count++] = w;