diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2024-10-17 17:10:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2024-10-17 17:10:42 +0000 |
commit | 66bf0333289e88e071f6e3831828ba0175bca9ad (patch) | |
tree | f09b487cabf22918080880719012dea2d268cc02 /usr.bin/tmux/menu.c | |
parent | a2368ae5ab841477ac1cce48ce9296507a18b312 (diff) |
Allow attributes in menu style, from Japin Li in GitHub issue 4194.
Diffstat (limited to 'usr.bin/tmux/menu.c')
-rw-r--r-- | usr.bin/tmux/menu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/menu.c b/usr.bin/tmux/menu.c index 10ad6646937..d16e38144ca 100644 --- a/usr.bin/tmux/menu.c +++ b/usr.bin/tmux/menu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: menu.c,v 1.53 2024/08/21 04:17:09 nicm Exp $ */ +/* $OpenBSD: menu.c,v 1.54 2024/10/17 17:10:41 nicm Exp $ */ /* * Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -453,7 +453,6 @@ menu_set_style(struct client *c, struct grid_cell *gc, const char *style, gc->bg = sytmp.gc.bg; } } - gc->attr = 0; } struct menu_data * |