Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved plot groups and bounds handling #2410

Merged
merged 32 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d191096
improve plot groups and bounds handling
s-nie Dec 8, 2022
ef0d828
changelog entry
s-nie Dec 8, 2022
e729d91
fix potential deadlock
s-nie Dec 14, 2022
d0bf5c3
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Dec 14, 2022
b028768
fix two more potential deadlocks
s-nie Dec 15, 2022
03c5906
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Dec 15, 2022
3a8d7ce
syntax fix
s-nie Dec 15, 2022
07e71a0
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Dec 19, 2022
de9d7e5
move changelog entry
s-nie Dec 19, 2022
e196536
move category
s-nie Dec 19, 2022
442a847
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Dec 19, 2022
fcc4c27
Update crates/egui/src/widgets/plot/mod.rs
s-nie Jan 23, 2023
8f2b465
Update crates/egui_demo_lib/src/demo/plot_demo.rs
s-nie Jan 23, 2023
3096ca0
clean up suggestions
s-nie Jan 23, 2023
a96565f
address comments
s-nie Jan 23, 2023
87e97f9
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Jan 23, 2023
e64a7aa
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Jan 24, 2023
5e1a6d2
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Jan 25, 2023
e39fd37
use the new methods
s-nie Jan 25, 2023
2fe9332
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Feb 4, 2023
d8efd9a
fix locked bounds
s-nie Feb 5, 2023
3269042
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Feb 14, 2023
d887d3f
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Feb 22, 2023
d0888ad
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Mar 9, 2023
5ba9bd7
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Mar 14, 2023
cd30c7d
Sync bounds_modified along with the bounds themselves
OmegaJak Mar 28, 2023
8a96fde
Merge remote-tracking branch 'upstream/master' into plot-groups-and-b…
s-nie Mar 29, 2023
ba13680
move changelog entry
s-nie Mar 29, 2023
63f0a8f
Remove set_bounds_auto - not necessary any more
OmegaJak Apr 14, 2023
38f611e
Merge pull request #1 from FarProbe/improve_linked_auto_bounds
s-nie Apr 14, 2023
dd808d4
Merge branch 'master' into plot-groups-and-bounds-improvements
emilk Apr 18, 2023
eaec082
add a comment about bounds modifications
s-nie Apr 18, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG
* Add `Slider::trailing_fill` for trailing color behind the circle like a `ProgressBar` ([#2660](https://github.com/emilk/egui/pull/2660)).

### Changed 🔧
* ⚠️ BREAKING: `Plot::link_axis` and `Plot::link_cursor` now take the name of the group ([#2410](https://github.com/emilk/egui/pull/2410)).
emilk marked this conversation as resolved.
Show resolved Hide resolved
* 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)).
Expand Down
Loading