From 271fb7f47c060bf7ebb34e3cb71fc1b47aa23723 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Thu, 24 Nov 2022 16:13:57 +0000 Subject: js: More conventional marking of menu item types Menu items that open dialogue boxes are now marked with ellipses, while menu items that lead to submenus have pointing triangles. The triangles are implemented as SVG files embedded in data: URLs in the CSS, which is kind of silly but also works really well. There are suitable characters in Unicode, but some of my test systems don't have fonts containing them, so maybe the SVG is better. --- emcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emcc.c') diff --git a/emcc.c b/emcc.c index 453637b..38864b9 100644 --- a/emcc.c +++ b/emcc.c @@ -975,7 +975,7 @@ int main(int argc, char **argv) populate_js_preset_menu(0, menu); if (thegame.can_configure) - js_add_preset(0, "Custom", -1); + js_add_preset(0, "Custom...", -1); have_presets_dropdown = npresets > 0 || thegame.can_configure; -- cgit v1.1