aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-12-22 10:20:08 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-12-22 10:20:08 +0000
commit4feee126b86d59e29886407cd5c534b6e1cb2ba1 (patch)
tree0bdff95c783b5f7a9c329e2a685a8f6a65c56894
parent19ea306606b6386ea457838353e1aea759d47f19 (diff)
downloadrtmux-4feee126b86d59e29886407cd5c534b6e1cb2ba1.tar.gz
rtmux-4feee126b86d59e29886407cd5c534b6e1cb2ba1.tar.bz2
rtmux-4feee126b86d59e29886407cd5c534b6e1cb2ba1.zip
Fix a couple of problems with grouped sessions reported by danh: redraw
properly and choose the correct last window after a window is killed.
-rw-r--r--server-fn.c6
-rw-r--r--session.c8
2 files changed, 6 insertions, 8 deletions
diff --git a/server-fn.c b/server-fn.c
index b8207ca2..df6aa134 100644
--- a/server-fn.c
+++ b/server-fn.c
@@ -250,10 +250,8 @@ server_kill_window(struct window *w)
if (session_detach(s, wl))
server_destroy_session_group(s);
- else {
- server_redraw_session(s);
- server_status_session_group(s);
- }
+ else
+ server_redraw_session_group(s);
}
}
diff --git a/session.c b/session.c
index 457d3fd2..20656957 100644
--- a/session.c
+++ b/session.c
@@ -549,10 +549,10 @@ session_group_synchronize1(struct session *target, struct session *s)
return;
/* If the current window has vanished, move to the next now. */
- if (s->curw != NULL) {
- while (winlink_find_by_index(ww, s->curw->idx) == NULL)
- session_next(s, 0);
- }
+ if (s->curw != NULL &&
+ winlink_find_by_index(ww, s->curw->idx) == NULL &&
+ session_last(s) != 0 && session_previous(s, 0) != 0)
+ session_next(s, 0);
/* Save the old pointer and reset it. */
memcpy(&old_windows, &s->windows, sizeof old_windows);