mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Remove unused ImePreedit
component from text_input
example (#12818)
# Objective
- The `ImePreedit` component from
[`text_input`](50699ecf76/examples/input/text_input.rs (L126-L127)
)
appears to be unused.
- This was found by running `cargo check --workspace --examples`,
originally as part of #12817.
## Solution
- Remove it :)
This commit is contained in:
parent
50699ecf76
commit
9084526794
1 changed files with 0 additions and 3 deletions
|
@ -123,9 +123,6 @@ struct Bubble {
|
|||
timer: Timer,
|
||||
}
|
||||
|
||||
#[derive(Component)]
|
||||
struct ImePreedit;
|
||||
|
||||
fn bubbling_text(
|
||||
mut commands: Commands,
|
||||
mut bubbles: Query<(Entity, &mut Transform, &mut Bubble)>,
|
||||
|
|
Loading…
Reference in a new issue