add doc for button_area_button

This commit is contained in:
Simon Gardling 2022-04-20 08:56:06 -04:00
parent 0b730ff197
commit beed4b4fc9

View File

@ -219,6 +219,7 @@ impl FunctionEntry {
let mut should_remove: bool = false;
/// Function that creates button that's used with the `button_area`
fn button_area_button(text: impl Into<egui::WidgetText>) -> Button {
Button::new(text.into()).frame(false)
}