improve line offset when gutter is not active

This commit is contained in:
Michal Wysokinski 2020-10-30 18:43:52 +01:00
parent 3008835e39
commit 7f28514dbf
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ style.divider_size = common.round(1 * SCALE)
style.scrollbar_size = common.round(4 * SCALE) style.scrollbar_size = common.round(4 * SCALE)
style.caret_width = common.round(2 * SCALE) style.caret_width = common.round(2 * SCALE)
style.tab_width = common.round(170 * SCALE) style.tab_width = common.round(170 * SCALE)
style.line_viewport_x_offset = common.round(5 * SCALE) style.line_viewport_x_offset = common.round(4 * SCALE)
style.font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", 14 * SCALE) style.font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", 14 * SCALE)
style.big_font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", 34 * SCALE) style.big_font = renderer.font.load(EXEDIR .. "/data/fonts/font.ttf", 34 * SCALE)