summary history branches tags files
commit:62b6ab40805f7b4b744a79b29d9811c4fa875c74
author:Trevor Bentley
committer:Trevor Bentley
date:Mon Jul 24 20:33:18 2017 +0200
parents:e657cce7db09f0679dd4ac38393378a420897a3c
Give more touchbar space for track title
diff --git a/src/main.rs b/src/main.rs
line changes: +1/-1
index 12c3ab7..676a194
--- a/src/main.rs
+++ b/src/main.rs
@@ -301,7 +301,7 @@ impl TouchbarUI {
     fn update_now_playing(&mut self, track: &str, artist: &str) {
         let text = format!("{}\n{}", track, artist);
         self.touchbar.update_label(&self.playing_label, &text);
-        self.touchbar.update_label_width(&self.playing_label, 200)
+        self.touchbar.update_label_width(&self.playing_label, 250)
     }
     fn update_volume(&mut self, volume: u32) {
         self.touchbar.update_slider(&self.volume_slider, volume as f64);