1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-11 03:05:52 +01:00

- Made the Gnome tasklist skip the windows with the "Skip window list" flag

enabled. (patch from Bastien Nocera <hadess@hadess.net>)
- Small code cleanup in src/workspace.c
This commit is contained in:
dan
2001-04-17 01:02:21 +00:00
parent 9d1306bf01
commit 10e7985961
3 changed files with 9 additions and 14 deletions

View File

@@ -202,7 +202,8 @@ wGNOMEUpdateClientListHint(WScreen *scr)
count = 0;
wwin = scr->focused_window;
while (wwin) {
if (!wwin->flags.internal_window) {
if (!wwin->flags.internal_window &&
!wwin->client_flags.skip_window_list) {
windows[count++] = wwin->client_win;
}