# HG changeset patch # User Bram Moolenaar # Date 1561565705 -7200 # Node ID 1a6ccc91ed462b0fccaacc1b0529727678a39728 # Parent 75a3120aee8ead82bd216768803f046fe4672aca patch 8.1.1601: missing changes to popup window test file commit https://github.com/vim/vim/commit/8da41816316f17382817df3f9449b55df8d39651 Author: Bram Moolenaar Date: Wed Jun 26 18:04:54 2019 +0200 patch 8.1.1601: missing changes to popup window test file Problem: Missing changes to popup window test file. Solution: Add those changes. diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -1423,6 +1423,8 @@ func Test_popup_scrollbar() let lines =<< trim END call setline(1, range(1, 20)) + hi ScrollThumb ctermbg=blue + hi ScrollBar ctermbg=red let winid = popup_create(['one', 'two', 'three', 'four', 'five', \ 'six', 'seven', 'eight', 'nine'], { \ 'minwidth': 8, @@ -1449,6 +1451,7 @@ func Test_popup_scrollbar() call term_sendkeys(buf, ":call popup_setoptions(winid, {'firstline': 9})\") call VerifyScreenDump(buf, 'Test_popupwin_scroll_4', {}) + call term_sendkeys(buf, ":call popup_setoptions(winid, {'scrollbarhighlight': 'ScrollBar', 'thumbhighlight': 'ScrollThumb'})\") call term_sendkeys(buf, ":call ScrollUp()\") call VerifyScreenDump(buf, 'Test_popupwin_scroll_5', {}) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1601, +/**/ 1600, /**/ 1599,