feat(tracker/gioui): keybindings file is keybindings.yml, not .yaml

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2024-10-13 14:52:30 +03:00
parent 10f021a497
commit 3fb7f07c2c
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ func loadCustomKeyBindings() []KeyBinding {
if err != nil {
return nil
}
path := filepath.Join(configDir, "sointu", "keybindings.yaml")
path := filepath.Join(configDir, "sointu", "keybindings.yml")
bytes, err := os.ReadFile(path)
if err != nil {
return nil
@ -47,7 +47,7 @@ func loadCustomKeyBindings() []KeyBinding {
return keyBindings
}
//go:embed keybindings.yaml
//go:embed keybindings.yml
var defaultKeyBindingsYaml []byte
func loadDefaultKeyBindings() []KeyBinding {