aboutsummaryrefslogtreecommitdiffstats
path: root/mist/gui.go
diff options
context:
space:
mode:
Diffstat (limited to 'mist/gui.go')
-rw-r--r--mist/gui.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/mist/gui.go b/mist/gui.go
index 45ef66624..7d851243f 100644
--- a/mist/gui.go
+++ b/mist/gui.go
@@ -466,12 +466,17 @@ func (gui *Gui) update() {
var (
pct float64 = 1.0 / float64(chainLength) * float64(blockLength)
dlWidget = gui.win.Root().ObjectByName("downloadIndicator")
+ dlLabel = gui.win.Root().ObjectByName("downloadLabel")
)
if pct < 1.0 {
dlWidget.Set("visible", true)
dlWidget.Set("value", pct)
+
+ dlLabel.Set("visible", true)
+ dlLabel.Set("text", fmt.Sprintf("%d / %d", blockLength, chainLength))
} else {
dlWidget.Set("visible", false)
+ dlLabel.Set("visible", false)
}
case <-statsUpdateTicker.C: