diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/actions.c | 1 | ||||
-rw-r--r-- | src/split.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/actions.c b/src/actions.c index ab47586..8dfb7a1 100644 --- a/src/actions.c +++ b/src/actions.c @@ -3088,6 +3088,7 @@ cmd_frestore (int interactively, char *data) } set_active_frame (current_frame()); + update_window_names (s); show_frame_indicator(); PRINT_DEBUG (("Done.\n")); diff --git a/src/split.c b/src/split.c index 63e63ba..17391b5 100644 --- a/src/split.c +++ b/src/split.c @@ -350,6 +350,7 @@ split_frame (rp_window_frame *frame, int way, int pixels) XRaiseWindow (dpy, find_window_number (frame->win_number)->w); } + update_window_names (s); show_frame_indicator(); } @@ -842,6 +843,7 @@ set_active_frame (rp_window_frame *frame) if ((old != s->current_frame && num_frames(s) > 1) || s != old_s) { + update_window_names (s); show_frame_indicator(); } |