This commit is contained in:
nora 2023-04-18 14:45:11 +02:00
parent d1546fe3fc
commit 63866fe572
3 changed files with 1 additions and 11 deletions

View file

@ -93,9 +93,6 @@ pub fn derive_inspect(input: TokenStream) -> TokenStream {
let (intro_generics, forward_generics, where_clauses) = input.generics.split_for_impl();
let expanded = quote! {
impl #intro_generics ::egui_inspect::Inspect for #ty_ident #forward_generics #where_clauses {
fn inspect(&self, ui: &mut ::egui::Ui, id_source: u64) {
}
fn inspect_mut(&mut self, ui: &mut ::egui::Ui, id_source: u64) {
#ts
}