diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ad783a..cb643ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Non-ASCII (multibyte) characters can now be used as keybindings (#198, #200) - Possible subscription update race condition on startup - Plaintext documents are escaped properly (regression from v1.8.0) +- Help page scrollbar color matches what's in the theme config ## [1.8.0] - 2021-02-17 diff --git a/display/help.go b/display/help.go index 5938927..4c76572 100644 --- a/display/help.go +++ b/display/help.go @@ -70,6 +70,7 @@ func helpInit() { App.Draw() } }) + helpTable.SetScrollBarColor(config.GetColor("scrollbar")) tabKeys := fmt.Sprintf("%s to %s", strings.Split(config.GetKeyBinding(config.CmdTab1), ",")[0], strings.Split(config.GetKeyBinding(config.CmdTab9), ",")[0])