From 17da5fd2daa54359c208957bc947c2eaa0c59f2b Mon Sep 17 00:00:00 2001 From: Hossein Mehrabi Date: Wed, 6 Jun 2018 02:55:20 +0430 Subject: [PATCH] changed limit default --- cryptoexchanges/cryptolive/toplist/widget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptoexchanges/cryptolive/toplist/widget.go b/cryptoexchanges/cryptolive/toplist/widget.go index b040cee0..557ca325 100644 --- a/cryptoexchanges/cryptolive/toplist/widget.go +++ b/cryptoexchanges/cryptolive/toplist/widget.go @@ -40,7 +40,7 @@ func (widget *Widget) setList() { for fromCurrency := range currenciesMap { displayName := Config.UString("wtf.mods.cryptolive.top."+fromCurrency+".displayName", "") - limit := Config.UInt("wtf.mods.cryptolive.top."+fromCurrency+".limit", 5) + limit := Config.UInt("wtf.mods.cryptolive.top."+fromCurrency+".limit", 1) widget.list.addItem(fromCurrency, displayName, limit, makeToList(fromCurrency, limit)) } }