Skip to content

Commit

Permalink
make pan font color
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Nov 15, 2024
1 parent bf4ac6f commit d0ba76f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,7 @@ impl View for DelayGraph {
let border_color: vg::Color = draw_context.border_color().into();
let outline_color: vg::Color = draw_context.outline_color().into();
let selection_color: vg::Color = draw_context.selection_color().into();
let font_color: vg::Color = draw_context.font_color().into();
let border_width = draw_context.border_width();
let outline_width = draw_context.outline_width();
let tap_meters = self.tap_meters.clone();
Expand Down Expand Up @@ -461,7 +462,7 @@ impl View for DelayGraph {
outline_width,
time_scaling_factor,
border_width,
border_color,
font_color,
background_color,
true,
);
Expand Down

0 comments on commit d0ba76f

Please sign in to comment.