mirror of
https://github.com/zedeus/nitter
synced 2026-09-06 07:09:31 +00:00
Add more preferences
This commit is contained in:
parent
7eb66d65aa
commit
45d88da3d9
5 changed files with 29 additions and 18 deletions
|
|
@ -32,6 +32,19 @@ const prefList*: Table[string, seq[Pref]] = {
|
|||
|
||||
Pref(kind: checkbox, name: "autoplayGifs", label: "Autoplay gifs",
|
||||
defaultState: true),
|
||||
],
|
||||
|
||||
"Display": @[
|
||||
Pref(kind: checkbox, name: "hideTweetStats",
|
||||
label: "Hide tweet stats (replies, retweets, likes",
|
||||
defaultState: false),
|
||||
|
||||
Pref(kind: checkbox, name: "hideBanner", label: "Hide profile banner",
|
||||
defaultState: false),
|
||||
|
||||
Pref(kind: checkbox, name: "stickyProfile",
|
||||
label: "Make profile sidebar stick to top",
|
||||
defaultState: true)
|
||||
]
|
||||
}.toTable
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue