aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluukvbaal <luukvbaal@gmail.com>2023-11-23 12:58:17 +0100
committerGitHub <noreply@github.com>2023-11-23 19:58:17 +0800
commitc126a3756a09716ed64fd2acb9eee5d411c4aa7b (patch)
treeddb685290bb56f5b21dfb45d165ad8957e41e8c6 /src
parent62dc1f26632fd0c915e7521a4e13a823142ec44d (diff)
downloadrneovim-c126a3756a09716ed64fd2acb9eee5d411c4aa7b.tar.gz
rneovim-c126a3756a09716ed64fd2acb9eee5d411c4aa7b.tar.bz2
rneovim-c126a3756a09716ed64fd2acb9eee5d411c4aa7b.zip
fix(column): apply numhl signs when 'signcolumn' is "no" (#26167)
Diffstat (limited to 'src')
-rw-r--r--src/nvim/decoration.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/decoration.c b/src/nvim/decoration.c
index 0f4bbaaac7..43b07501a0 100644
--- a/src/nvim/decoration.c
+++ b/src/nvim/decoration.c
@@ -713,9 +713,7 @@ void decor_redraw_signs(win_T *wp, buf_T *buf, int row, SignTextAttrs sattrs[],
int *cul_id, int *num_id)
{
MarkTreeIter itr[1];
- if (!buf->b_signs
- || wp->w_minscwidth == SCL_NO
- || !marktree_itr_get_overlap(buf->b_marktree, row, 0, itr)) {
+ if (!buf->b_signs || !marktree_itr_get_overlap(buf->b_marktree, row, 0, itr)) {
return;
}