Fix overview mixed declarations

This commit is contained in:
Rob Loach 2024-04-04 13:25:45 -04:00
parent 34ea8bb042
commit a46521c099
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
1 changed files with 3 additions and 2 deletions

View File

@ -6,14 +6,15 @@ overview(struct nk_context *ctx)
static nk_flags window_flags = NK_WINDOW_TITLE|NK_WINDOW_BORDER|NK_WINDOW_SCALABLE|NK_WINDOW_MOVABLE|NK_WINDOW_MINIMIZABLE;
nk_flags actual_window_flags;
/* widget flags */
static nk_bool disable_widgets = nk_false;
/* popups */
static enum nk_style_header_align header_align = NK_HEADER_RIGHT;
static nk_bool show_app_about = nk_false;
ctx->style.window.header.align = header_align;
static nk_bool disable_widgets = nk_false;
actual_window_flags = window_flags;
if (!(actual_window_flags & NK_WINDOW_TITLE))
actual_window_flags &= ~(NK_WINDOW_MINIMIZABLE|NK_WINDOW_CLOSABLE);