aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/ui.internal.h
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2023-11-21 22:14:54 -0600
committerLibravatar bigfoot547 <[email protected]>2023-11-21 22:14:54 -0600
commit9ce02c0e72500054156fcbbd876782b568173823 (patch)
treef4560da5cd2d3bf4a9aea686292a60827c9681d0 /src/ui/ui.internal.h
parentfix trap (diff)
custom assert macros and other stuff
Diffstat (limited to 'src/ui/ui.internal.h')
-rw-r--r--src/ui/ui.internal.h3
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;