This commit is contained in:
ThomasV 2015-09-05 09:24:53 +02:00
parent 815adb3983
commit 1f215ae673
2 changed files with 3 additions and 14 deletions

View File

@ -70,7 +70,8 @@ class HistoryWidget(MyTreeWidget):
item = EditableItem(entry)
item.setIcon(0, icon)
for i in range(len(entry)):
item.setFont(i, QFont(MONOSPACE_FONT))
if i!=2:
item.setFont(i, QFont(MONOSPACE_FONT))
if value < 0:
item.setForeground(4, QBrush(QColor("#BC1E1E")))
if tx_hash:

View File

@ -255,17 +255,6 @@ class Plugin(BasePlugin):
window.fx_fields = {}
self.add_send_edit(window)
self.add_receive_edit(window)
history_list = window.history_list
cols = history_list.columnCount()
header = history_list.headerItem()
labels = [header.text(c) for c in range(history_list.columnCount())]
labels.extend([_('Fiat Amount'), _('Fiat Balance')])
history_list.setColumnCount(cols + 2)
# For unclear reasons setting this column to ResizeToContents
# makes e.g. label editing very slow
history_list.setColumnWidth(cols, 120)
history_list.setColumnWidth(cols + 1, 120)
history_list.setHeaderLabels(labels)
window.update_status()
def close(self):
@ -275,8 +264,7 @@ class Plugin(BasePlugin):
for window in self.parent.windows:
window.send_fiat_e.hide()
window.receive_fiat_e.hide()
if self.config_history():
window.history_list.setColumnCount(window.history_list.columnCount() - 2)
window.update_history_tab()
window.update_status()
def set_currencies(self, currency_options):