mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
freetype: minor fixes
This commit is contained in:
parent
7a5a4df4c6
commit
3e6f7d3eb6
@ -292,7 +292,7 @@ fn (ctx mut FreeType) private_draw_text(_x, _y int, utext ustring, cfg gx.TextCf
|
||||
mut x := f32(_x)
|
||||
mut y := f32(_y)
|
||||
wx, wy := ctx.text_size(utext.s)
|
||||
yoffset := if ctx.scale > 1 { 5 /* highdpi */ } else { -1 /* lowdpi */ }
|
||||
yoffset := if ctx.scale > 1 { 5 } else { -1 } // 5 hidpi, -1 lowdpi
|
||||
// println('scale=$ctx.scale size=$cfg.size')
|
||||
if cfg.align == gx.ALIGN_RIGHT {
|
||||
//width := utext.len * 7
|
||||
@ -374,7 +374,7 @@ fn (ctx mut FreeType) private_draw_text(_x, _y int, utext ustring, cfg gx.TextCf
|
||||
// Stop drawing if the limit is reached
|
||||
if cfg.max_width > 0 {
|
||||
if x >= cfg.max_width {
|
||||
break
|
||||
//break
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -234,8 +234,7 @@ pub fn (mut c Checker) struct_decl(decl ast.StructDecl) {
|
||||
if !c.table.check(field_expr_type, field.typ) {
|
||||
field_expr_type_sym := c.table.get_type_symbol(field_expr_type)
|
||||
field_type_sym := c.table.get_type_symbol(field.typ)
|
||||
c.error('default expression for field `${field.name}` ' +
|
||||
'has type `${field_expr_type_sym.name}`, but should be `${field_type_sym.name}`',
|
||||
c.error('default expression for field `${field.name}` ' + 'has type `${field_expr_type_sym.name}`, but should be `${field_type_sym.name}`',
|
||||
field.default_expr.position())
|
||||
}
|
||||
}
|
||||
@ -256,7 +255,7 @@ pub fn (mut c Checker) struct_init(mut struct_init ast.StructInit) table.Type {
|
||||
struct_init.typ = c.expected_type
|
||||
}
|
||||
type_sym := c.table.get_type_symbol(struct_init.typ)
|
||||
if !type_sym.is_public && type_sym.mod != c.mod {
|
||||
if !type_sym.is_public && type_sym.kind != .placeholder && type_sym.mod != c.mod {
|
||||
c.warn('type `$type_sym.name` is private', struct_init.pos)
|
||||
}
|
||||
// println('check struct $typ_sym.name')
|
||||
|
Loading…
Reference in New Issue
Block a user