Andreas Johansson
Andreas Johansson
Can you try running `git bisect` from 0.3.1 and see which commit introduced the performance regression?
@J2ane The commit seems like it would have nothing to do with performance, it's isolated to plots. Are you sure this is where it started lagging? Regarding the table, nice...
@J2ane Did you run `cargo run --release --example dock` and check the performance after every `git bisect` step?
@J2ane Nope, it works fine here, but I'm on Wayland and an older kernel version, so not the same setup ☹️ So based on your bisect if you `git checkout...
You can already use your own IconName, like this: ```rust #[derive(Clone)] pub enum MyIconName { Wrench, } impl MyIconName { pub fn path(self) -> SharedString { match self { Self::Wrench...
@andreaskrath Agreed! I just meant that it is **possible**, you don't have to pick a "spare icon" like you wrote in the issue. Regarding `.child(IconName)` I think that it could...
I think this is because the font hasn't been applied yet in `RenderOnce` for `Input` when the family is assigned there. Perhaps we can move the text wrapper font update...
Maybe it should be delegated to the completions provider to avoid the racing? So the provider can decide whether or not to show ghost text or the completions in the...
Seems like it doesn't have to be all numbers, just one long line
Could also allow `set_highlighter` for `InputMode::SingleLine`