mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
patch 9.1.1427: rendering artifacts with the tabpanel
Problem: rendering artifacts with the tabpanel (char101) Solution: prevent double redraw, use Columns instead of frame width (Hirohito Higashi) fixes: #17429 closes: #17435 Signed-off-by: Hirohito Higashi <h.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
2090405de5
commit
b29e37133d
@ -339,10 +339,6 @@ update_screen(int type_arg)
|
|||||||
win_redr_status(wp, TRUE); // any popup menu will be redrawn below
|
win_redr_status(wp, TRUE); // any popup menu will be redrawn below
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if defined(FEAT_TABPANEL)
|
|
||||||
if (redraw_tabpanel)
|
|
||||||
draw_tabpanel();
|
|
||||||
#endif
|
|
||||||
#if defined(FEAT_SEARCH_EXTRA)
|
#if defined(FEAT_SEARCH_EXTRA)
|
||||||
end_search_hl();
|
end_search_hl();
|
||||||
#endif
|
#endif
|
||||||
|
@ -4478,7 +4478,7 @@ scroll_region_reset(void)
|
|||||||
{
|
{
|
||||||
OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
|
OUT_STR(tgoto((char *)T_CS, (int)Rows - 1, 0));
|
||||||
if (*T_CSV != NUL)
|
if (*T_CSV != NUL)
|
||||||
OUT_STR(tgoto((char *)T_CSV, topframe->fr_width - 1, 0));
|
OUT_STR(tgoto((char *)T_CSV, Columns - 1, 0));
|
||||||
screen_start(); // don't know where cursor is now
|
screen_start(); // don't know where cursor is now
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -709,6 +709,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1427,
|
||||||
/**/
|
/**/
|
||||||
1426,
|
1426,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user