Skip to content

Commit

Permalink
🐛 Fix emoji selector setting in options
Browse files Browse the repository at this point in the history
The emoji selector setting within the options was incorrectly setting
the opposite value.
  • Loading branch information
mikelorant committed Mar 4, 2023
1 parent 6678d0b commit 6ba5d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (m *Model) GeneralPaneSet() {
},
&setting.Radio{
Title: "Emoji Selector",
Values: []string{"Above", "Below"},
Values: []string{"Below", "Above"},
Index: cfg.View.EmojiSelector.Index() - 1,
},
&setting.Radio{
Expand Down

0 comments on commit 6ba5d6c

Please sign in to comment.