mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-10 06:34:15 +02:00
[ui] fix: history columns are too close together
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user