summaryrefslogtreecommitdiffstats
path: root/cointop/cointop.go
diff options
context:
space:
mode:
Diffstat (limited to 'cointop/cointop.go')
-rw-r--r--cointop/cointop.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cointop/cointop.go b/cointop/cointop.go
index 0e54335..56428e3 100644
--- a/cointop/cointop.go
+++ b/cointop/cointop.go
@@ -53,6 +53,7 @@ type State struct {
hideMarketbar bool
hideChart bool
hideStatusbar bool
+ keepRowFocusOnSort bool
lastSelectedRowIndex int
marketBarHeight int
page int
@@ -197,6 +198,7 @@ func NewCointop(config *Config) (*Cointop, error) {
}
ct := &Cointop{
+ // defaults
apiChoice: CoinGecko,
apiKeys: new(APIKeys),
forceRefresh: make(chan bool),
@@ -222,6 +224,7 @@ func NewCointop(config *Config) (*Cointop, error) {
hideMarketbar: config.HideMarketbar,
hideChart: config.HideChart,
hideStatusbar: config.HideStatusbar,
+ keepRowFocusOnSort: false,
marketBarHeight: 1,
onlyTable: config.OnlyTable,
refreshRate: 60 * time.Second,