mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
gg: update colors
This commit is contained in:
parent
e566e750a3
commit
8d93aab062
4
gg/gg.v
4
gg/gg.v
@ -566,7 +566,7 @@ fn (ctx &GG) _draw_text(_x, _y int, utext ustring, cfg gx.TextCfg) {
|
||||
|
||||
fn (ctx &GG) draw_text_def(x, y int, text string) {
|
||||
cfg := gx.TextCfg {
|
||||
color: gx.BLACK,
|
||||
color: gx.Black,
|
||||
size: DEFAULT_FONT_SIZE,
|
||||
align: gx.ALIGN_LEFT,
|
||||
}
|
||||
@ -666,7 +666,7 @@ pub fn (ctx &GG) draw_line_c(x, y, x2, y2 int, color gx.Color) {
|
||||
}
|
||||
|
||||
pub fn (c &GG) draw_line(x, y, x2, y2 int) {
|
||||
c.draw_line_c(x, y, x2, y2, gx.GRAY)
|
||||
c.draw_line_c(x, y, x2, y2, gx.Gray)
|
||||
}
|
||||
|
||||
pub fn (c &GG) draw_vertical(x, y, height int) {
|
||||
|
Loading…
Reference in New Issue
Block a user