mirror of
https://github.com/tmux/tmux.git
synced 2026-07-03 10:22:29 +00:00
Fix so that the end of a synchronized update again triggers a redraw.
This commit is contained in:
6
CHANGES
6
CHANGES
@@ -1,4 +1,8 @@
|
|||||||
CHANGES FROM 3.7 to 3.7a
|
CHANGES FROM 3.7a TO 3.7b
|
||||||
|
|
||||||
|
* Fix so that the end of a synchronized update again triggers a redraw.
|
||||||
|
|
||||||
|
CHANGES FROM 3.7 TO 3.7a
|
||||||
|
|
||||||
* Fix crash in break-pane when no name is provided.
|
* Fix crash in break-pane when no name is provided.
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# configure.ac
|
# configure.ac
|
||||||
|
|
||||||
AC_INIT([tmux], 3.7a)
|
AC_INIT([tmux], 3.7b)
|
||||||
AC_PREREQ([2.60])
|
AC_PREREQ([2.60])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR(etc)
|
AC_CONFIG_AUX_DIR(etc)
|
||||||
|
|||||||
2
input.c
2
input.c
@@ -1955,6 +1955,8 @@ input_csi_dispatch_rm_private(struct input_ctx *ictx)
|
|||||||
break;
|
break;
|
||||||
case 2026:
|
case 2026:
|
||||||
screen_write_stop_sync(ictx->wp);
|
screen_write_stop_sync(ictx->wp);
|
||||||
|
if (ictx->wp != NULL)
|
||||||
|
ictx->wp->flags |= PANE_REDRAW;
|
||||||
break;
|
break;
|
||||||
case 2031:
|
case 2031:
|
||||||
screen_write_mode_clear(sctx, MODE_THEME_UPDATES);
|
screen_write_mode_clear(sctx, MODE_THEME_UPDATES);
|
||||||
|
|||||||
Reference in New Issue
Block a user