From aba44380137b5d78f9033e46b5dc4a4f3ef1012a Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 6 Jun 2016 07:28:52 +0000 Subject: Cache selected state so that cells going from selected to unselected are not skipped, reported by Omar Sandoval. --- tmux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 5422c8eb..b8d1a1f5 100644 --- a/tmux.h +++ b/tmux.h @@ -642,6 +642,7 @@ enum utf8_state { #define GRID_FLAG_EXTENDED 0x8 #define GRID_FLAG_FGRGB 0x10 #define GRID_FLAG_BGRGB 0x20 +#define GRID_FLAG_SELECTED 0x40 /* Grid line flags. */ #define GRID_LINE_WRAPPED 0x1 -- cgit