This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.
The branch, next has been updated
via 88393f4a6c335c2ec8e6ecd8c18d2e553bc3fb5f (commit)
from 1f74d4698c99200bcea8161a0aea688e567701c5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://repo.or.cz/wmaker-crm.git/commit/88393f4a6c335c2ec8e6ecd8c18d2e553bc3fb5f
commit 88393f4a6c335c2ec8e6ecd8c18d2e553bc3fb5f
Author: Satya Mishra <[email protected]>
Date: Fri Sep 25 15:22:00 2015 -0700
wmaker: fixed infinite loop in switching within group
diff --git a/src/switchpanel.c b/src/switchpanel.c
index b3832f1..51e6a6f 100644
--- a/src/switchpanel.c
+++ b/src/switchpanel.c
@@ -366,8 +366,10 @@ static WMArray *makeWindowListArray(WScreen *scr, int
include_unmapped, Bool cla
if ((canReceiveFocus(wwin) != 0) &&
(wwin->flags.mapped || wwin->flags.shaded ||
include_unmapped)) {
if (class_only)
- if (!sameWindowClass(scr->focused_window, wwin))
+ if (!sameWindowClass(scr->focused_window,
wwin)) {
+ wwin = wwin->prev;
continue;
+ }
if (!WFLAGP(wwin, skip_switchpanel))
WMAddToArray(windows, wwin);
}
-----------------------------------------------------------------------
Summary of changes:
src/switchpanel.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")
--
To unsubscribe, send mail to [email protected].