Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Mon, 06 Apr 2015 17:12:34 UTC Commit: ed3142d0dfacded023fc78d4bd2f0a5b81fe588b https://github.com/geany/geany/commit/ed3142d0dfacded023fc78d4bd2f0a5b81fe58...
Log Message: ----------- Use editor's default font also for VTE
On OS X Monospace 10 is too small (and using non-standard font). As we already have a special OS X font for the editor, use this value (having identical fonts both for the editor and VTE seems to be a good default).
Modified Paths: -------------- src/keyfile.c
Modified: src/keyfile.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -875,7 +875,7 @@ static void load_dialog_prefs(GKeyFile *config) "send_selection_unsafe", FALSE); vc->image = utils_get_setting_string(config, "VTE", "image", ""); vc->shell = utils_get_setting_string(config, "VTE", "shell", shell); - vc->font = utils_get_setting_string(config, "VTE", "font", "Monospace 10"); + vc->font = utils_get_setting_string(config, "VTE", "font", GEANY_DEFAULT_FONT_EDITOR); vc->scroll_on_key = utils_get_setting_boolean(config, "VTE", "scroll_on_key", TRUE); vc->scroll_on_out = utils_get_setting_boolean(config, "VTE", "scroll_on_out", TRUE); vc->enable_bash_keys = utils_get_setting_boolean(config, "VTE", "enable_bash_keys", TRUE);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).