shithub: neindaw

Download patch

ref: bdd619996e8c81b02d0f51cb9602dc588d17e1bf
parent: 0b84baedbd43d85ef11794026326ad6ce44e3e38
parent: 477f328c5b67cee80cb3ed43b3d5f58dc4b128f8
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Wed Mar 18 18:08:48 EDT 2020

Merge commit '477f328c5b67cee80cb3ed43b3d5f58dc4b128f8'

--- a/microui/README.md
+++ b/microui/README.md
@@ -18,12 +18,6 @@
   window, panel, header or treenode state internally. It is up to the
   user to manage this data themselves
 
-## Contributing
-
-The library is designed to be lightweight, providing a foundation to which
-you can easily add custom controls and UI elements; pull requests adding
-additional features will likely not be merged. Bug reports are welcome.
-
 ## License
 
 This library is free software; you can redistribute it and/or modify it
--- a/microui/microui.c
+++ b/microui/microui.c
@@ -3,7 +3,7 @@
 #include <draw.h>
 #include <microui.h>
 
-#define MU_REAL_FMT "%.3g"
+#define MU_REAL_FMT "%g"
 #define MU_SLIDER_FMT "%.2f"
 
 #define MIN(a, b) ((a) < (b) ? (a) : (b))