Skip to content

Commit

Permalink
Making IsFocusedHelper public
Browse files Browse the repository at this point in the history
  • Loading branch information
eckz committed Dec 10, 2024
1 parent f20f154 commit 97253b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_input_focus/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pub trait IsFocused {

/// System param that helps get information about the current focused entity.
#[derive(SystemParam)]
struct IsFocusedHelper<'w, 's> {
pub struct IsFocusedHelper<'w, 's> {
parent_query: Query<'w, 's, &'static Parent>,
input_focus: Option<Res<'w, InputFocus>>,
input_focus_visible: Option<Res<'w, InputFocusVisible>>,
Expand Down

0 comments on commit 97253b9

Please sign in to comment.