Skip to content

Commit

Permalink
Make the text module public
Browse files Browse the repository at this point in the history
closes #776
  • Loading branch information
cmyr committed Apr 8, 2020
1 parent 682fe08 commit 48bad55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion druid/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ mod menu;
mod mouse;
#[cfg(test)]
mod tests;
mod text;
pub mod text;
pub mod theme;
pub mod widget;
mod win_handler;
Expand Down
1 change: 1 addition & 0 deletions druid/src/text/text_input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ pub trait TextInput {

/// Handles key events and returns actions that are applicable to
/// single line textboxes
#[derive(Default)]
pub struct BasicTextInput {}

impl BasicTextInput {
Expand Down

0 comments on commit 48bad55

Please sign in to comment.