icons
authorThomasV <thomasv@gitorious>
Sun, 12 Feb 2012 13:27:36 +0000 (14:27 +0100)
committerThomasV <thomasv@gitorious>
Sun, 12 Feb 2012 13:27:36 +0000 (14:27 +0100)
client/gui_qt.py
client/icons/confirmed.png [new file with mode: 0644]
client/icons/unconfirmed.svg [moved from client/icons/gtk-execute.svg with 100% similarity]

index 0479fc9..85b67e1 100644 (file)
@@ -88,11 +88,11 @@ class ElectrumWindow(QMainWindow):
             if tx['height']:
                 conf = self.wallet.interface.blocks - tx['height'] + 1
                 time_str = datetime.datetime.fromtimestamp( tx['nTime']).isoformat(' ')[:-3]
-                icon = QIcon("icons/gtk-apply.svg")
+                icon = QIcon("icons/confirmed.png")
             else:
                 conf = 0
                 time_str = 'pending'
-                icon = QIcon("icons/gtk-execute")
+                icon = QIcon("icons/unconfirmed.svg")
             v = tx['value']
             balance += v 
             label = self.wallet.labels.get(tx_hash)
diff --git a/client/icons/confirmed.png b/client/icons/confirmed.png
new file mode 100644 (file)
index 0000000..243985f
Binary files /dev/null and b/client/icons/confirmed.png differ