changeset 2617:ad9e074c8901

Fix border style for web file chooser
author Michael Pavone <pavone@retrodev.com>
date Fri, 21 Feb 2025 00:50:31 -0800
parents cbf5a01e429e
children 1579b840a1af
files nuklear_ui/blastem_nuklear.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/nuklear_ui/blastem_nuklear.c	Fri Feb 21 00:45:14 2025 -0800
+++ b/nuklear_ui/blastem_nuklear.c	Fri Feb 21 00:50:31 2025 -0800
@@ -121,6 +121,7 @@
 		container.style.display = 'none';
 		container.style.borderWidth = '2px';
 		container.style.borderColor = 'black';
+		container.style.borderStyle = 'solid';
 		titleEl = document.createElement('h3');
 		titleEl.id = 'chooser_title';
 		container.appendChild(titleEl);