update egui

This commit is contained in:
Simon Gardling
2023-10-02 09:21:56 -04:00
parent 346c9ee267
commit c486c554c8
9 changed files with 166 additions and 187 deletions

View File

@@ -69,7 +69,9 @@ impl<'de> Deserialize<'de> for FunctionManager {
}
/// Function that creates button that's used with the `button_area`
fn button_area_button(text: impl Into<WidgetText>) -> Button { Button::new(text).frame(false) }
fn button_area_button<'a>(text: impl Into<WidgetText>) -> Button<'a> {
Button::new(text).frame(false)
}
impl FunctionManager {
#[inline]