small fixes for gtk gui

This commit is contained in:
ThomasV 2012-10-12 01:21:50 +02:00
parent 10119dfed3
commit 7959417751
1 changed files with 2 additions and 2 deletions

View File

@ -306,7 +306,7 @@ def run_network_dialog( wallet, parent ):
status = "Connected to %s:%d\n%d blocks"%(interface.host, interface.port, wallet.blocks)
else:
status = "Not connected"
server = wallet.server
server = interface.server
else:
import random
status = "Please choose a server."
@ -1160,7 +1160,7 @@ class ElectrumWindow:
if u: text += "[%s unconfirmed]"%( format_satoshis(u,True,self.wallet.num_zeros).strip() )
else:
self.status_image.set_from_stock(gtk.STOCK_NO, gtk.ICON_SIZE_MENU)
self.network_button.set_tooltip_text("Trying to contact %s.\n%d blocks"%(self.wallet.server, self.wallet.blocks))
self.network_button.set_tooltip_text("Trying to contact %s.\n%d blocks"%(interface.server, self.wallet.blocks))
text = "Not connected"
self.status_bar.pop(self.context_id)