Skip to content

Commit

Permalink
Export crates/modules to facilitate external widget definitions (#152)
Browse files Browse the repository at this point in the history
Export crates/modules required for external widgets
  • Loading branch information
longmathemagician authored Nov 23, 2023
1 parent 9b84691 commit 1e0b148
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod app_main;
mod bloom;
mod geometry;
mod id;
mod text;
pub mod text;
pub mod view;
pub mod widget;

Expand All @@ -17,3 +17,7 @@ pub use app::App;
pub use app_main::AppLauncher;
pub(crate) use bloom::Bloom;
pub use geometry::Axis;

pub use accesskit;
pub use parley;
pub use vello;
2 changes: 1 addition & 1 deletion src/widget/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mod core;
//mod layout_observer;
//mod list;
mod linear_layout;
mod piet_scene_helpers;
pub mod piet_scene_helpers;
mod raw_event;
mod switch;
//mod scroll_view;
Expand Down

0 comments on commit 1e0b148

Please sign in to comment.