Skip to content

Commit

Permalink
#101 - Turn default TUI toggles to verbs to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
F1bonacc1 committed Nov 15, 2023
1 parent ef5efdb commit 3e96d00
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/tui/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,20 +158,20 @@ func getDefaultActions() ShortCuts {
ShortCutKeys: map[ActionName]*Action{
ActionLogScreen: {
ToggleDescription: map[bool]string{
true: "Full Screen",
false: "Half Screen",
true: "Maximize",
false: "Minimize",
},
},
ActionFollowLog: {
ToggleDescription: map[bool]string{
true: "Follow On",
false: "Follow Off",
true: "Follow",
false: "Unfollow",
},
},
ActionWrapLog: {
ToggleDescription: map[bool]string{
true: "Wrap On",
false: "Wrap Off",
true: "Wrap",
false: "Unwrap",
},
},
ActionLogSelection: {
Expand All @@ -191,8 +191,8 @@ func getDefaultActions() ShortCuts {
},
ActionProcessScreen: {
ToggleDescription: map[bool]string{
true: "Full Screen",
false: "Half Screen",
true: "Maximize",
false: "Minimize",
},
},
ActionProcessStop: {
Expand Down

0 comments on commit 3e96d00

Please sign in to comment.