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

DragValue and Slider text is now proportional instead of monospace (#2638)

* DragValue and Slider text is now proportional instead of monospace

Control with `Style::drag_value_text_style`

* Update changelog
This commit is contained in:
Emil Ernerfeldt
2023-01-27 23:30:20 +01:00
committed by GitHub
parent fe7ff66266
commit e7c0547e23
3 changed files with 24 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG
* Improved plot grid appearance ([#2412](https://github.com/emilk/egui/pull/2412)).
* Improved the algorithm for picking the number of decimals to show when hovering values in the `Plot`.
* Default `ComboBox` is now controlled with `Spacing::combo_width` ([#2621](https://github.com/emilk/egui/pull/2621)).
* `DragValue` and `Slider` now use the proportional font ([#2638](https://github.com/emilk/egui/pull/2638)).
### Fixed 🐛
* Trigger `PointerEvent::Released` for drags ([#2507](https://github.com/emilk/egui/pull/2507)).