commit 2877e0682fa841cbbfeb730bc82d4a6072daa62e
parent e88d25a2bc0598f187109b2581fbd4d19844ee97
Author: ThomasV <thomasv@gitorious>
Date: Thu, 9 Jan 2014 09:58:57 +0100
gui: insert used addresses first
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -1307,7 +1307,7 @@ class ElectrumWindow(QMainWindow):
item.setBackgroundColor(1, QColor('red'))
if len(h) > 0 and c == -u:
if not used_flag:
- seq_item.addChild(used_item)
+ seq_item.insertChild(0,used_item)
used_flag = True
used_item.addChild(item)
else: