1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -04:00

Basic scroll area support

Just vertical scrolling at the moment
This commit is contained in:
Emil Ernerfeldt
2020-04-21 20:52:17 +02:00
parent 4efbb94e1b
commit dbf8520e63
5 changed files with 183 additions and 10 deletions

View File

@@ -19,6 +19,7 @@ pub mod math;
mod memory;
pub mod mesher;
mod region;
mod scroll_area;
mod style;
mod texture_atlas;
mod types;
@@ -37,6 +38,7 @@ pub use {
memory::Memory,
mesher::{Mesh, PaintBatches, Vertex},
region::Region,
scroll_area::ScrollArea,
style::Style,
texture_atlas::Texture,
types::*,