Release `egui_plot` 0.24.2 (#3763)
## Changelog * Fix plot auto-bounds default [#3722](https://github.com/emilk/egui/pull/3722) (thanks [@abey79](https://github.com/abey79)!) --------- Co-authored-by: Antoine Beyeler <49431240+abey79@users.noreply.github.com>
This commit is contained in:
parent
e2c1d9f90d
commit
34c341444f
|
|
@ -5,6 +5,10 @@ This file is updated upon each release.
|
|||
Changes since the last release can be found at <https://github.com/emilk/egui/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.24.1 - 2024-12-03
|
||||
* Fix plot auto-bounds default [#3722](https://github.com/emilk/egui/pull/3722) (thanks [@abey79](https://github.com/abey79)!)
|
||||
|
||||
|
||||
## 0.24.0 - 2023-11-23
|
||||
* Add `emath::Vec2b`, replacing `egui_plot::AxisBools` [#3543](https://github.com/emilk/egui/pull/3543)
|
||||
* Add `auto_bounds/set_auto_bounds` to `PlotUi` [#3587](https://github.com/emilk/egui/pull/3587) [#3586](https://github.com/emilk/egui/pull/3586) (thanks [@abey79](https://github.com/abey79)!)
|
||||
|
|
|
|||
|
|
@ -781,7 +781,7 @@ impl Plot {
|
|||
max: pos + size,
|
||||
};
|
||||
// Next we want to create this layout.
|
||||
// Incides are only examples.
|
||||
// Indices are only examples.
|
||||
//
|
||||
// left right
|
||||
// +---+---------x----------+ +
|
||||
|
|
|
|||
Loading…
Reference in New Issue