1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

💄 Help page scrollbar uses theme config

This commit is contained in:
makeworld 2021-03-02 22:13:56 -05:00
parent d58aa83d71
commit 44d92e45e3
2 changed files with 2 additions and 0 deletions

View File

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

View File

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