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

ui.columns: Improve allocated size estimation + justified layous

Closes https://github.com/emilk/egui/issues/76
This commit is contained in:
Emil Ernerfeldt
2020-12-25 15:34:33 +01:00
parent 355934ddc1
commit 997cd4b279
2 changed files with 14 additions and 10 deletions

View File

@@ -31,10 +31,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* `Slider` and `DragValue` uses fewer decimals by default. See the full precision by hovering over the value.
* `egui::App`: added `fn name(&self)` and `fn clear_color(&self)`.
* Combo boxes has scroll bars when needed.
* `ui.columns`: Columns now defaults to justified top-to-down layouts.
### Fixed 🐛
* The background for `CentralPanel` will now cover unused space too.
* `ui.columns`: Improve allocated size estimation.
### Deprecated
* `RawInput::screen_size` - use `RawInput::screen_rect` instead.