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

Add support for all integers in DragValue and Slider (except 128-bit)

This commit is contained in:
Emil Ernerfeldt
2021-02-23 20:40:14 +01:00
parent 02a65132e4
commit 814f8c0dd8
3 changed files with 71 additions and 85 deletions

View File

@@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
* Add `Ui::hyperlink_to(label, url)`.
* Sliders can now have a value prefix and suffix (e.g. the suffix `"°"` works like a unit).
* `Context::set_pixels_per_point` to control the scale of the UI.
* Add support for all integers in `DragValue` and `Slider` (except 128-bit).
### Changed 🔧