Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/terminal.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ key_press_cb(MinitermTerminal *terminal, GdkEventKey *event)
vte_terminal_paste_clipboard(vte);
return TRUE;
case GDK_KEY_plus:
case GDK_KEY_KP_Add:
increase_font_size(terminal);
return TRUE;
case GDK_KEY_r:
Expand All @@ -279,6 +280,7 @@ key_press_cb(MinitermTerminal *terminal, GdkEventKey *event)
} else if (modifiers == GDK_CONTROL_MASK) {
switch (key) {
case GDK_KEY_minus:
case GDK_KEY_KP_Subtract:
decrease_font_size(terminal);
return TRUE;
case GDK_KEY_equal:
Expand Down