Skip to content

Commit

Permalink
fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ifndefJOSH committed Nov 15, 2024
1 parent 3f9cbac commit 5c5a794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<jack::AudioIn> {
Expand Down

0 comments on commit 5c5a794

Please sign in to comment.