From 00b997b60e24328164e4beaa07631d69b825a1a4 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Fri, 28 Jun 2024 17:15:52 +0200 Subject: [PATCH] egui: fix compilation error -- import `Trace` from trace, not tracer --- src/bin/topola-egui/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/topola-egui/app.rs b/src/bin/topola-egui/app.rs index 421671b..1a608d7 100644 --- a/src/bin/topola-egui/app.rs +++ b/src/bin/topola-egui/app.rs @@ -34,7 +34,8 @@ use topola::{ router::{ draw::DrawException, navmesh::{BinavvertexNodeIndex, Navmesh}, - tracer::{Trace, Tracer}, + trace::Trace, + tracer::Tracer, }, specctra::{design::SpecctraDesign, mesadata::SpecctraMesadata}, };