1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-02 06:40:06 -04:00

When using a custom font you can now specify a font index (#873)

When using a custom font you can now specify a font index

Closes https://github.com/emilk/egui/issues/853
This commit is contained in:
Emil Ernerfeldt
2021-11-07 19:47:52 +01:00
committed by GitHub
parent 10c8ffa543
commit 878eddd546
4 changed files with 49 additions and 17 deletions

View File

@@ -11,6 +11,7 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui_w
* Add context menus: See `Ui::menu_button` and `Response::context_menu` ([#543](https://github.com/emilk/egui/pull/543)).
* You can now read and write the cursor of a `TextEdit` ([#848](https://github.com/emilk/egui/pull/848)).
* Most widgets containing text (`Label`, `Button` etc) now supports rich text ([#855](https://github.com/emilk/egui/pull/855)).
* When using a custom font you can now specify a font index ([#873](https://github.com/emilk/egui/pull/873)).
### Changed 🔧
* Unifiy the four `Memory` data buckets (`data`, `data_temp`, `id_data` and `id_data_temp`) into a single `Memory::data`, with a new interface ([#836](https://github.com/emilk/egui/pull/836)).