electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 13b3824efaf2c18ecdbfaf478d8136d5b6c10c12
parent 9e26df6a739f0903c8959883069887e01a3d1e6a
Author: thomasv <thomasv@gitorious>
Date:   Wed,  8 Feb 2012 16:55:13 +0100

changing icons

Diffstat:
Mclient/gui.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/gui.py b/client/gui.py @@ -1128,10 +1128,10 @@ class BitcoinGUI: elif self.wallet.interface.is_connected: self.network_button.set_tooltip_text("Connected to %s.\n%d blocks\nresponse time: %f"%(self.wallet.interface.host, self.wallet.interface.blocks, self.wallet.interface.rtime)) if self.wallet.interface.blocks == 0: - self.status_image.set_from_stock(gtk.STOCK_STOP, gtk.ICON_SIZE_MENU) + self.status_image.set_from_stock(gtk.STOCK_NO, gtk.ICON_SIZE_MENU) text = "Server not ready" elif not self.wallet.interface.was_polled: - self.status_image.set_from_stock(gtk.STOCK_STOP, gtk.ICON_SIZE_MENU) + self.status_image.set_from_stock(gtk.STOCK_REFRESH, gtk.ICON_SIZE_MENU) text = "Synchronizing..." else: self.status_image.set_from_stock(gtk.STOCK_YES, gtk.ICON_SIZE_MENU)