Merge branch 'master' into visual-focus

This commit is contained in:
Daniel Eklöf 2020-01-03 12:08:51 +01:00
commit 709dbfe18b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -884,7 +884,7 @@ render_search_box(struct terminal *term)
const int width = min(term->width, 2 * margin + max(20, term->search.len) * term->cell_width);
const int height = min(term->height, 2 * margin + 1 * term->cell_height);
unsigned long cookie = (uintptr_t)term;
unsigned long cookie = (uintptr_t)term + 1;
struct buffer *buf = shm_get_buffer(term->wl->shm, width, height, cookie);
/* Background - yellow on empty/match, red on mismatch */