1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 22:30:03 -04:00

Implement efficent scrolling of large content (#457)

This commit is contained in:
Emil Ernerfeldt
2021-06-03 18:48:45 +02:00
committed by GitHub
parent 2cdd90b111
commit 6468b2b84e
6 changed files with 209 additions and 16 deletions

View File

@@ -12,6 +12,7 @@ NOTE: [`eframe`](eframe/CHANGELOG.md), [`egui_web`](egui_web/CHANGELOG.md) and [
* Add right and bottom panels (`SidePanel::right` and `Panel::bottom`).
* Add resizable panels.
* Add an option to overwrite frame of a `Panel`.
* Add `ScrollArea::show_rows` for efficient scrolling of huge UI:s.
* Add `Style::override_text_style` to easily change the text style of everything in a `Ui` (or globally).
* You can now change `TextStyle` on checkboxes, radio buttons and `SelectableLabel`.
* Add support for [cint](https://crates.io/crates/cint) under `cint` feature.