Skip to content

Close Submenu

banner

This action closes the current submenu. This means, you will return to the parent menu of the current submenu.

This action is often used for the Center-Click workflow of a submenu, so that the submenu is closed when the user clicks on the center of a menu.

This action has no options.

If you edit your menus.json file by hand or use the IPC interface, you can create this action with something like the following.

menus.json
...
"selectWorkflow": {
"actions": [
...
{
"type": "close-submenu"
}
...
]
}
...