mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
Fix ScrollArea failure by handling horizontal and vertical scrolling separately in the missing place Everywhere in `ScrollArea`, horizontal and vertical scrolling are handled separately. However, because there is a single place where they are not handled separately, when trying to process horizontal and vertical scrolls independently, one of the dimensions fails to scroll. This Pull Request ensures that horizontal and vertical scrolling are handled separately in this area, just like in the rest of the codebase. * Closes #5289 * Closes #5307 * Closes #8274