summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-04 17:18:15 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-04 17:18:15 -0500
commit306505e714b7caf146b8ec8386b407d57555563d (patch)
tree9cebf2eaf83899a7aa80fff70dd4d56cf4aa29d6 /command.h
parent16ab3629d435d52539b6345d79433e27c367ce83 (diff)
commands to change the font size
Diffstat (limited to 'command.h')
-rw-r--r--command.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/command.h b/command.h
index 5f69369..7744fdb 100644
--- a/command.h
+++ b/command.h
@@ -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}
};