diff options
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -38,6 +38,9 @@ ENUM_U16 { CMD_UNDO, CMD_REDO, + CMD_TEXT_SIZE_INCREASE, + CMD_TEXT_SIZE_DECREASE, + CMD_COUNT } ENUM_U16_END(Command); @@ -78,5 +81,7 @@ static CommandName const command_names[CMD_COUNT] = { {"save", CMD_SAVE}, {"undo", CMD_UNDO}, {"redo", CMD_REDO}, + {"increase-text-size", CMD_TEXT_SIZE_INCREASE}, + {"decrease-text-size", CMD_TEXT_SIZE_DECREASE} }; |