summaryrefslogtreecommitdiff
path: root/src/events.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2004-11-03 03:01:12 +0000
committersabetts <sabetts>2004-11-03 03:01:12 +0000
commit0832f74bbbc6cac86740966afb8056ce53e3ca92 (patch)
tree709639f77c88fb6b2f599d5a129c94a32bde6ad2 /src/events.c
parentf9c720556c0d3fd96fe0f5882439fb71ebdcfe77 (diff)
downloadratpoison-0832f74bbbc6cac86740966afb8056ce53e3ca92.zip
* src/group.c (group_last_window): add argument, the screen to find the
window in. All callers updated. (group_prev_window): make sure the matched window is in the same screen as win. (group_next_window): likewise * src/window.c (find_window_other): add argument, the screen to find the window in. All callers updated.
Diffstat (limited to 'src/events.c')
-rw-r--r--src/events.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/events.c b/src/events.c
index 8005a26..7e05a7e 100644
--- a/src/events.c
+++ b/src/events.c
@@ -346,7 +346,7 @@ client_msg (XClientMessageEvent *ev)
PRINT_DEBUG (("Iconify Request.\n"));
if (win->state == NormalState)
{
- rp_window *w = find_window_other();
+ rp_window *w = find_window_other(win->scr);
if (w)
set_active_window (w);