1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

changed limit default

This commit is contained in:
Hossein Mehrabi 2018-06-06 02:55:20 +04:30
parent 10b6431be1
commit 17da5fd2da

View File

@ -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))
}
}