README updates.

This commit is contained in:
Pietro Gagliardi 2016-05-24 22:46:53 -04:00
parent 558e56c124
commit 31d6939c48
2 changed files with 2 additions and 1 deletions

View File

@ -20,6 +20,7 @@ This README is being written.<br>
* **24 May 2016**
* As promised, `uiCombobox` is now split into `uiCombobox` for non-editable comboboxes and `uiEditableCombobox` for editable comboboxes. Mind the function changes as well :)
* There is a new function `uiMainStep()`, which runs one iteration of the main loop. It takes a single boolean argument, indicating whether to wait for an event to occur or not. It returns true if an event was processed (or if no event is available if you don't want to wait) and false if the event loop was told to stop (for instance, `uiQuit()` was called).
* **23 May 2016**
* Fixed surrogate pair drawing on OS X.

View File

@ -54,7 +54,7 @@ static void mapItemReleaser(void *key, void *value)
mapWalk(self->items, mapItemReleaser);
mapReset(self->items);
mapDestroy(self->items);
uninitMenus();
uninitMenus();
[super dealloc];
}