Sublime Forum

Is it possible to enlarge the font of the commit navigation?

#1

I notice it is possible to increase font for file content and commit message via Preferences->font_size but this does not change the font size of the commit navigation (and other items).

Is there a setting for doing so somewhere else?

0 Likes

#2

The settings apply the same way as for Sublime Text. Means the font_size is for anything based on ST’s views, while the rest of the GUI’s look is configured in the theme.

You can try 2 things to increase font size:

  1. Add “ui_scale” setting to Preferences.sublime-settings, which will scale the whole UI including icons etc.
  2. Create a Packages/User/Merge.sublime-theme file with following content
{
    "variables": {
        "font_size": 14,
    }
}
1 Like