get rid of the panel wrapper for more space

the screen title is now displayed by the layout
This commit is contained in:
Henrik Friedrichsen
2019-03-07 22:34:45 +01:00
parent b075c96134
commit 502ac36de3
6 changed files with 57 additions and 36 deletions

View File

@@ -45,9 +45,9 @@ impl View for StatusBar {
});
let state_icon = match self.spotify.get_current_status() {
PlayerEvent::Playing => " ",
PlayerEvent::Paused => " ▮▮ ",
PlayerEvent::Stopped | PlayerEvent::FinishedTrack => " ",
PlayerEvent::Playing => "",
PlayerEvent::Paused => "▮▮",
PlayerEvent::Stopped | PlayerEvent::FinishedTrack => " ",
}
.to_string();