Emil Ernerfeldt
Emil Ernerfeldt
Would `ui.style().truncate = Some(true);` solve most of the problems @abey79, or do you still want `label_trunc` and `label_wrap`?
This is a very similar problem to: * https://github.com/emilk/egui/issues/3974
`egui_plot` has recently been moved to its own repository, at https://github.com/emilk/egui_plot This will hopefully speed up its development by having more reviewers and maintainers. Please re-open this PR at https://github.com/emilk/egui_plot/pulls...
merge conflict
The main thing that's been keeping me from updating it is that I don't know how to properly test it. Help would be greatly appreciated!
It depends on how much work it is, I guess. If the change in accesskit when upgrading was just a version bump (no change in code needed), then you could...
I think we need two things to solve this: * Add a clip-rect for panels, so that if they overflow, it is invisible * Respect the clip-rect in the interaction...
This is not how mac works though - double-clicking a word does NOT include `-` or `.`
If the new code matches the behavior of native windows, then check if `ctx.os() == OperatingSystem::Windows`
I want to match how text editing works natively on whatever platform egui runs on. If double-clicking `foo-bar` selects both `foo` and `bar` on windows, then let's make it work...