From 86da26fbc1009312cdfdee1966541535792a8907 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 25 Apr 2024 16:39:17 -0400 Subject: [PATCH] Have the height of the style dropdown be automatic --- demo/common/overview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/common/overview.c b/demo/common/overview.c index 1c035e6..d115f8a 100644 --- a/demo/common/overview.c +++ b/demo/common/overview.c @@ -130,7 +130,7 @@ overview(struct nk_context *ctx) #ifdef INCLUDE_STYLE /* style selector */ - nk_layout_row_dynamic(ctx, 30, 2); + nk_layout_row_dynamic(ctx, 0, 2); { int new_theme; nk_label(ctx, "Style:", NK_TEXT_LEFT);