From 2ca7400cc6ed922582adcd6a2455b6608a5a5f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 29 Aug 2019 21:03:00 +0200 Subject: [PATCH] render: render_search_box: draw cursor as a bar --- render.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/render.c b/render.c index eaba6b03..0be0d3d4 100644 --- a/render.c +++ b/render.c @@ -740,6 +740,9 @@ render_search_box(struct terminal *term) /* Text (what the user entered - *not* match(es)) */ for (size_t i = 0; i < term->search.len; i++) { + if (i == term->search.cursor) + draw_bar(term, buf->pix, &fg, x, y); + const struct glyph *glyph = font_glyph_for_wc(&term->fonts[0], term->search.buf[i]); if (glyph == NULL) continue; @@ -754,6 +757,9 @@ render_search_box(struct terminal *term) x += glyph->width; } + if (term->search.cursor >= term->search.len) + draw_bar(term, buf->pix, &fg, x, y); + wl_subsurface_set_position( term->wl.search_sub_surface, term->width - width - margin, term->height - height - margin);