Skip to content

Commit

Permalink
fix: 🐛 menu-click default should be "show"
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jun 9, 2020
1 parent d48e374 commit ebae1f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ showHidden=true
showVisible=true
#Action on click. One of: show, hide, toggle, cycle, toggle-cycle
click=toggle-cycle
menu-click=focus
menu-click=show
#Exclude windows whose class or instance contains one of these values
exclude=scratchpad;

Expand Down
2 changes: 1 addition & 1 deletion config/settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ showHidden=true
showVisible=true
#Action on click. One of: show, hide, toggle, cycle, toggle-cycle
click=toggle-cycle
menu-click=focus
menu-click=show
#Exclude windows whose class or instance contains one of these values
exclude=scratchpad;

Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const defaults = {
showHidden: true,
showVisible: true,
click: "toggle-cycle" as DockAction,
"menu-click": "focus" as DockAction,
"menu-click": "show" as DockAction,
exclude: ["scratchpad"],
},
commands: {
Expand Down

0 comments on commit ebae1f1

Please sign in to comment.