Reset font size to startup default using a keybinding

Reset the font size to the default startup value
by pressing '=' in selection mode.

Closes: #164
This commit is contained in:
Jelle van der Waa 2016-01-17 19:28:46 +01:00
parent 850a77da99
commit 5d099931e3
3 changed files with 13 additions and 0 deletions

View File

@ -146,6 +146,8 @@ SELECTION MODE
+-----------------------------------+-----------------------------------------------------------+
| ``-`` | decrease font size |
+-----------------------------------+-----------------------------------------------------------+
| ``=`` | reset font size to default |
+-----------------------------------+-----------------------------------------------------------+
During scrollback search, the current selection is changed to the search match
and copied to the PRIMARY clipboard buffer.

View File

@ -135,6 +135,8 @@ previous search match
increase font size
.IP "\fB-\fP"
decrease font size
.IP "\fB=\fP"
reset font size to default
.SS Hints Mode
The
\fBHints Mode\fP is meant for accessing urls outputted to the terminal.

View File

@ -123,6 +123,7 @@ struct config_info {
gboolean fullscreen;
int tag;
char *config_file;
gdouble font_scale;
};
struct keybind_info {
@ -722,6 +723,10 @@ void window_title_cb(VteTerminal *vte, gboolean *dynamic_title) {
title ? title : "termite");
}
static void reset_font_scale(VteTerminal *vte, gdouble scale) {
vte_terminal_set_font_scale(vte, scale);
}
static void increase_font_scale(VteTerminal *vte) {
gdouble scale = vte_terminal_get_font_scale(vte);
@ -902,6 +907,9 @@ gboolean key_press_cb(VteTerminal *vte, GdkEventKey *event, keybind_info *info)
case GDK_KEY_minus:
decrease_font_scale(vte);
break;
case GDK_KEY_equal:
reset_font_scale(vte, info->config.font_scale);
break;
}
return TRUE;
}
@ -1371,6 +1379,7 @@ static void set_config(GtkWindow *window, VteTerminal *vte, config_info *info,
info->filter_unmatched_urls = cfg_bool("filter_unmatched_urls", TRUE);
info->modify_other_keys = cfg_bool("modify_other_keys", FALSE);
info->fullscreen = cfg_bool("fullscreen", TRUE);
info->font_scale = vte_terminal_get_font_scale(vte);
g_free(info->browser);
info->browser = nullptr;