diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-01 21:47:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-01 21:47:35 +0200 |
commit | a83e70000f106a1e1e0f86e8e362ec94c0df074c (patch) | |
tree | 79eca2c4a31df9a1dde9c5c7acaf99757a2642db /src/syntax.c | |
parent | 5b8cfedfbd19a71a30c73cf44b0aec3da7fc1a24 (diff) | |
download | vim-git-a83e70000f106a1e1e0f86e8e362ec94c0df074c.tar.gz |
patch 8.1.1613: popup window test fails with Athena and Motifv8.1.1613
Problem: Popup window test fails with Athena and Motif.
Solution: Compute the highlight attribut when the GUI is not active.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4d4234683..9c17a5875 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -8202,6 +8202,8 @@ do_highlight( { if (gui.in_use && do_colors) gui_new_scrollbar_colors(); + else + set_hl_attr(idx); } # ifdef FEAT_BEVAL_GUI else if (is_tooltip_group) |