mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
patch 8.2.1509: vertical separator is cleared when dragging a popup window
Problem: Vertical separator is cleared when dragging a popup window using a multi-byte character for the border. Solution: Only clear the character before the window if it is using a multi-byte character. (closes #6766)
This commit is contained in:
@@ -464,7 +464,8 @@ screen_line(
|
|||||||
// First char of a popup window may go on top of the right half of a
|
// First char of a popup window may go on top of the right half of a
|
||||||
// double-wide character. Clear the left half to avoid it getting the popup
|
// double-wide character. Clear the left half to avoid it getting the popup
|
||||||
// window background color.
|
// window background color.
|
||||||
if (coloff > 0 && ScreenLines[off_to] == 0)
|
if (coloff > 0 && ScreenLines[off_to] == 0
|
||||||
|
&& ScreenLinesUC[off_to - 1] != 0)
|
||||||
{
|
{
|
||||||
ScreenLines[off_to - 1] = ' ';
|
ScreenLines[off_to - 1] = ' ';
|
||||||
ScreenLinesUC[off_to - 1] = 0;
|
ScreenLinesUC[off_to - 1] = 0;
|
||||||
|
@@ -754,6 +754,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 */
|
||||||
|
/**/
|
||||||
|
1509,
|
||||||
/**/
|
/**/
|
||||||
1508,
|
1508,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user