YabataDesign / afterglow-theme

[DEPRECATED] A minimal dark Theme for Sublime Text 2 and 3
http://yabatadesign.github.io/afterglow-theme/
2.12k stars 139 forks source link

Incorrect SideBar font under Windows 7 #2

Closed yosi-dediashvili closed 10 years ago

yosi-dediashvili commented 10 years ago

Hi, First, the theme looks great.

It seems like the font for the SideBar is taken from someplace other than the "font_face" setting of Sublime.

afteglow-bad-sidebar-font

Thanks!

YabataDesign commented 10 years ago

First, thank you very much for your comments.

I have not changed the font (font_face) on the theme, but I modified the size (font_size). I understand that that's the difference you find between default theme and theme Afterglow.

To return to the original size of the sidebar, you have to open Packages -> Theme Afterglow and edit Afterglow.sublime-theme file (or blue, magenta,... variant of your choice). Comment the line 501 "font.size": 13 in the following code:

// Sidebar entry
{
    "class": "sidebar_label",
    // "font.size": 13,
    "color": [116, 116, 116] // 03
},

In this way the sidebar returns to the default settings.

It is not a very stable solution (you will lose your changes if you upgrade this Package to a newer version in the future), but don't know another way to change the font size of the sidebar from the user preferences.

YabataDesign commented 10 years ago

Work fine this solution for you, yosi-dediashvili?

yosi-dediashvili commented 10 years ago

Works great. Thanks!

yosi-dediashvili commented 10 years ago

BTW, is there a way for you to expose the font size for the sidebar via the configuration?

YabataDesign commented 10 years ago

Hi, yosi-dediashvili.

I uploaded a new version (1.1.2) with some modifications and now you can change the font size of the sidebar from the user preferences file.

Here I explain: https://github.com/YabataDesign/afterglow-theme#sidebar-size-options

First you must upgrade the package to the latest version (1.1.2): Package Control: Upgrade Package and select Theme - Afterglow

yosi-dediashvili commented 10 years ago

Thanks!