ref: 477f328c5b67cee80cb3ed43b3d5f58dc4b128f8
parent: 0ac294decc984c7c3b0272db4de45728dadc38c5
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Wed Mar 18 18:08:48 EDT 2020
Squashed 'microui/' changes from 664a525..3cb9c8f 3cb9c8f change real format to %g 1c6bcdd readme: remove "contributing" section git-subtree-dir: microui git-subtree-split: 3cb9c8f44fe281dce71ec108a51b0a6bf6955301
--- a/README.md
+++ b/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.c
+++ b/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))