From 5c5a7942c5e1c13286611cb3c2f7871be1891ca8 Mon Sep 17 00:00:00 2001 From: Josh Jeppson Date: Fri, 15 Nov 2024 11:30:34 -0700 Subject: [PATCH] fixed small bug --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 488789b..ce0d919 100644 --- a/src/main.rs +++ b/src/main.rs @@ -372,7 +372,7 @@ impl MixChannel { Color32::DARK_GRAY); } response.on_hover_cursor(egui::CursorIcon::PointingHand) - .on_hover_text(format!("{:.1} db", self.last.log10())); + .on_hover_text(format!("{:.3} db", val)); } fn declare_jack_port(&self, client : &jack::Client) -> jack::Port {