compromise width on entry name

This commit is contained in:
Greg Gauthier 2021-03-16 09:45:15 +00:00
parent 6cd38adabd
commit 0463321dd5
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class RadioMenu(AbstractMenu):
self.add_menu_item(
MenuItem(
i,
"{:<35}".format(station_list[i]["name"][:35]) + " " + # force 35 character fixed length
"{:<30}".format(station_list[i]["name"][:30]) + " " + # force 35 character fixed length
"{:<5}".format(station_list[i]["codec"][:5]) + " " + # force 5 character fixed length
"{:<5}".format(station_list[i]["bitrate"][:5]) + " " +
station_list[i]["url"],