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

Add Ui::set_visible as a way to hide widgets

Closes https://github.com/emilk/egui/issues/460
This commit is contained in:
Emil Ernerfeldt
2021-06-07 22:12:49 +02:00
parent 3c603c55b8
commit ece25ee7f3
4 changed files with 79 additions and 21 deletions

View File

@@ -13,6 +13,7 @@ NOTE: [`eframe`](eframe/CHANGELOG.md), [`egui_web`](egui_web/CHANGELOG.md) and [
* Add resizable panels.
* Add an option to overwrite frame of a `Panel`.
* Add `ScrollArea::show_rows` for efficient scrolling of huge UI:s.
* Add `Ui::set_visible` as a way to hide widgets.
* 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.