Move unfocused ender bool into cursor render info

This commit is contained in:
Kovid Goyal
2023-11-21 21:22:16 +05:30
parent 7e424e1848
commit be37a283d5
8 changed files with 29 additions and 17 deletions

View File

@@ -300,7 +300,7 @@ typedef struct {
} Cursor;
typedef struct {
bool is_visible, is_focused;
bool is_visible, is_focused, render_even_when_unfocused;
CursorShape shape;
unsigned int x, y;
} CursorRenderInfo;