gg: fix default text size

pull/5733/head
Alexander Medvednikov 2020-07-07 17:33:24 +02:00
parent 5fd5e558ae
commit e0fcd565d5
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import gx
import os import os
const ( const (
default_font_size = 20 default_font_size = 16
) )
struct FT { struct FT {
@ -51,7 +51,7 @@ pub fn (ctx &Context) draw_text(x, y int, text string, cfg gx.TextCfg) {
} }
ctx.ft.fons.set_font(ctx.ft.font_normal) ctx.ft.fons.set_font(ctx.ft.font_normal)
scale := if ctx.ft.scale == 0 { f32(1) } else { ctx.ft.scale } scale := if ctx.ft.scale == 0 { f32(1) } else { ctx.ft.scale }
ctx.ft.fons.set_size(2.0 * scale * f32(cfg.size)) ctx.ft.fons.set_size(scale * f32(cfg.size))
if cfg.align == gx.align_right { if cfg.align == gx.align_right {
C.fonsSetAlign(ctx.ft.fons, C.FONS_ALIGN_RIGHT | C.FONS_ALIGN_TOP) C.fonsSetAlign(ctx.ft.fons, C.FONS_ALIGN_RIGHT | C.FONS_ALIGN_TOP)
} }