Skip to content

Commit 5c5a794

Browse files
committed
fixed small bug
1 parent 3f9cbac commit 5c5a794

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ impl MixChannel {
372372
Color32::DARK_GRAY);
373373
}
374374
response.on_hover_cursor(egui::CursorIcon::PointingHand)
375-
.on_hover_text(format!("{:.1} db", self.last.log10()));
375+
.on_hover_text(format!("{:.3} db", val));
376376
}
377377

378378
fn declare_jack_port(&self, client : &jack::Client) -> jack::Port<jack::AudioIn> {

0 commit comments

Comments
 (0)