mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
Fix History setting field
This commit is contained in:
parent
0885811abe
commit
e1cce5f2b9
|
|
@ -18,7 +18,8 @@ class HistoryCompletionOption
|
|||
let preplain = page.bmark ? "B" : ""
|
||||
preplain += page.search ? "S" : ""
|
||||
let pre = preplain
|
||||
if (config.get("completions", "Tab", "statusstylepretty") === "true") {
|
||||
// Tab settings apply here to grandfather in people who set it before when there was a bug
|
||||
if ((config.get("completions", "Tab", "statusstylepretty") === "true") || (config.get("completions", "History", "statusstylepretty") === "true")) {
|
||||
pre = page.bmark ? "\u2B50" : ""
|
||||
pre += page.search ? "\u{1F50D}" : ""
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue