Kubik
Kubik
hello, for me the pdb is also not generated, and no error is printed I tried to message @Mixaill on discord, but no response so far, so I am writing...
```rs let count = my_things_to_draw.len(); egui::ScrollArea::vertical().auto_shrink([false;2]).show_indexed_viewport(ui, count, |ui, viewport|{ let max_height = viewport.height(); let mut used_rect = egui::Rect::NOTHING; for drawable in my_things_to_draw.iter().skip(viewport.start_index()) { used_rect = used_rect.union(drawable.draw(ui)); if used_rect.height() > max_height...
@emilk the main page state: > Extensible: [easy to write your own widgets for egui](https://github.com/emilk/egui/blob/master/egui_demo_lib/src/demo/toggle_switch.rs) but when I am trying to implement item scrolling area, I am hitting private functions:...
ok I will take another look at it and open PR ~~when~~ **if** I have something (if I figure how these scroll bars work)
I decided to do it differently this time, and write it within the repo, so no issues with private types and functions this time. I have it almost working, but...
@dignifiedquire can you try `ItemScrollArea` from my PR? I fix the scrolling to not be so jumpy (in most cases).
Thanks for confirming @emilk that it was just wrongly named, it was really confusing at first, but then I figured out, that it is either wrong name, or some crazy...
@dignifiedquire how well it worked for your use case?
- `stick_to_bottom` I did not test that. (I use stick to top) I will take a look. - scroll speed depends on the size of the item you scrolling over,...
My use case would be many simple queries over 1 or two tables to, and some complicated queries that need to run every few minutes now to keep local copy...