Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed May 28, 2024
1 parent 6605f47 commit b3e2641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/egui/src/containers/combo_box.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ impl ComboBox {

/// Check if the [`ComboBox`] with the given id has its popup menu currently opened.
pub fn is_open(ctx: &Context, id: Id) -> bool {
ctx.memory(|m| m.is_popup_open(ComboBox::widget_to_popup_id(id)))
ctx.memory(|m| m.is_popup_open(Self::widget_to_popup_id(id)))
}

/// Convert a [`ComboBox`] id to the id used to store it's popup state.
Expand Down

0 comments on commit b3e2641

Please sign in to comment.