Skip to content

Commit

Permalink
Fix missing type registrations
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Oct 7, 2024
1 parent a03deeb commit 56a7b7a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ impl Plugin for TextInputPlugin {
.register_type::<TextInputInactive>()
.register_type::<TextInputCursorTimer>()
.register_type::<TextInputInner>()
.register_type::<TextInputValue>();
.register_type::<TextInputValue>()
.register_type::<TextInputPlaceholder>()
.register_type::<TextInputCursorPos>();
}
}

Expand Down

0 comments on commit 56a7b7a

Please sign in to comment.