diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-14 13:48:00 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-14 13:48:00 -0500 |
commit | 5ff81b44c8fd118580d011fb61deb662f8b93c93 (patch) | |
tree | bb0118576e3ee25f5cc334f5521fcca444795788 /command.h | |
parent | 6a4872368e3b240ea15eda3e2e645f588efcf6a9 (diff) |
toggle view only mode
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -63,6 +63,8 @@ ENUM_U16 { CMD_TEXT_SIZE_INCREASE, CMD_TEXT_SIZE_DECREASE, + CMD_VIEW_ONLY, // toggle view-only mode + CMD_ESCAPE, // by default this is the escape key. closes menus, etc. CMD_COUNT @@ -125,6 +127,7 @@ static CommandName const command_names[CMD_COUNT] = { {"tab-prev", CMD_TAB_PREV}, {"increase-text-size", CMD_TEXT_SIZE_INCREASE}, {"decrease-text-size", CMD_TEXT_SIZE_DECREASE}, - {"escape", CMD_ESCAPE} + {"view-only", CMD_VIEW_ONLY}, + {"escape", CMD_ESCAPE}, }; |