[ui] fix: history columns are too close together

This commit is contained in:
Vinicius Moreira
2020-11-30 15:52:41 -03:00
parent e7fe50361a
commit 289e576db1
2 changed files with 3 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ class HistoryDialog(QDialog):
for col, key in enumerate(sorted(data.keys())):
item = QLabel()
item.setProperty('even', row % 2 == 0)
item.setText(str(data[key]))
item.setText(' {}'.format(data[key]))
if current_status:
item.setCursor(QCursor(Qt.WhatsThisCursor))

View File

@@ -5,6 +5,7 @@ color.blue=#67D8EF
color.green=#A6E22C
color.orange=#FD9621
color.pink=#F92472
color.purple=#AC80FF
color.yellow=#E7DB74
disabled.color=#ABABAB
error.color=@color.pink
@@ -13,7 +14,7 @@ focus.font.color=@color.yellow
font.color=#F8F8F2
history.version.focus.color=@font.color
history.version.outdated=@color.orange
history.version.updated=@color.green
history.version.updated=@color.purple
inner_widget.background.color=#282925
menu.item.selected.font.color=@color.yellow
menu.item.selected.background.color=#48473D