diff options
| author | 2023-11-21 22:14:54 -0600 | |
|---|---|---|
| committer | 2023-11-21 22:14:54 -0600 | |
| commit | 9ce02c0e72500054156fcbbd876782b568173823 (patch) | |
| tree | f4560da5cd2d3bf4a9aea686292a60827c9681d0 /src/ui/ui.internal.h | |
| parent | fix trap (diff) | |
custom assert macros and other stuff
Diffstat (limited to 'src/ui/ui.internal.h')
| -rw-r--r-- | src/ui/ui.internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/ui.internal.h b/src/ui/ui.internal.h index 6107c94..b570654 100644 --- a/src/ui/ui.internal.h +++ b/src/ui/ui.internal.h @@ -5,6 +5,8 @@ #include "config.h" #include NCURSES_INCLUDE +#include <stdbool.h> + #define UI__WINDOW_DOCK_TOP (0u) #define UI__WINDOW_DOCK_BOTTOM (1u) #define UI__WINDOW_DOCK_LEFT (2u) @@ -57,6 +59,7 @@ struct ui_window_dock { struct ui_window_root { struct ui_window_base super; + bool undersize_scr; struct ui_window_base *content; struct ui_window_base *floating; |
