Browse Source

voodoo fix

283
ThomasV 13 years ago
parent
commit
4e71483975
  1. 6
      lib/gui_qt.py

6
lib/gui_qt.py

@ -210,6 +210,12 @@ class ElectrumWindow(QMainWindow):
self.connect(self, QtCore.SIGNAL('updatesignal'), self.update_wallet) self.connect(self, QtCore.SIGNAL('updatesignal'), self.update_wallet)
self.history_list.setFocus(True) self.history_list.setFocus(True)
# dark magic fix by flatfly; https://bitcointalk.org/index.php?topic=73651.msg959913#msg959913
if platform.system() == 'Windows':
tabs.setCurrentIndex (2)
tabs.setCurrentIndex (3)
tabs.setCurrentIndex (0)
def connect_slots(self, sender): def connect_slots(self, sender):
if self.wallet.seed: if self.wallet.seed:

Loading…
Cancel
Save