From 92582f66d8d1a95091c42cdee5076f19ced6541c Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Tue, 11 Feb 2025 10:11:15 +1300 Subject: [PATCH] [DebugTools] Fix a bug with display of border widths in debug tools --- clay.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clay.h b/clay.h index f992914..6baab45 100644 --- a/clay.h +++ b/clay.h @@ -3115,11 +3115,11 @@ void Clay__RenderDebugView(void) { CLAY({{0}}) { CLAY_TEXT(CLAY_STRING("{ left: "), infoTextConfig); CLAY_TEXT(Clay__IntToString(borderConfig->width.left), infoTextConfig); - CLAY_TEXT(CLAY_STRING("{ right: "), infoTextConfig); + CLAY_TEXT(CLAY_STRING(", right: "), infoTextConfig); CLAY_TEXT(Clay__IntToString(borderConfig->width.right), infoTextConfig); - CLAY_TEXT(CLAY_STRING("{ top: "), infoTextConfig); + CLAY_TEXT(CLAY_STRING(", top: "), infoTextConfig); CLAY_TEXT(Clay__IntToString(borderConfig->width.top), infoTextConfig); - CLAY_TEXT(CLAY_STRING("{ bottom: "), infoTextConfig); + CLAY_TEXT(CLAY_STRING(", bottom: "), infoTextConfig); CLAY_TEXT(Clay__IntToString(borderConfig->width.bottom), infoTextConfig); CLAY_TEXT(CLAY_STRING(" }"), infoTextConfig); }