1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

gl, glfw, freetype fixes

This commit is contained in:
Alexander Medvednikov
2020-04-02 01:45:22 +02:00
parent 1cfe44d9c6
commit 88d15c6611
10 changed files with 77 additions and 14 deletions

View File

@@ -120,7 +120,7 @@ pub fn (ctx &GG) draw_text_def(x, y int, text string) {
cfg := gx.TextCfg {
color: gx.Black
size: default_font_size
align: gx.ALIGN_LEFT
align: gx.align_left
}
ctx.draw_text(x, y, text, cfg)
}