Skip to content

Commit

Permalink
Waveform: use GNOME dark theme background color (#16)
Browse files Browse the repository at this point in the history
RGB 0,0,0 is too dark for the waveform scrolling
  • Loading branch information
fengalin committed Sep 5, 2017
1 parent c8c6122 commit 4df79de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/audio_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ impl AudioController {
return Inhibit(false);
}

cr.set_source_rgb(0.0f64, 0.0f64, 0.0f64);
cr.set_source_rgb(0.2f64, 0.2235f64, 0.2314f64);
cr.paint();

if self.position == 0 {
Expand Down

0 comments on commit 4df79de

Please sign in to comment.