Don't show empty info values

This commit is contained in:
Joseph Coffland 2020-04-10 21:13:31 -07:00
parent 704ff16eb5
commit 91e9fe629b

View File

@ -327,6 +327,8 @@ class ClientConfig:
row = 0
for name, value in category:
if not value: continue
# Name
label = gtk.Label('<b>%s</b>' % name)
label.set_use_markup(True)