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

ci: fix gg-regressions failure

This commit is contained in:
Delyan Angelov 2022-12-21 21:03:47 +02:00
parent 88e33a83de
commit 68501677e3
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -49,5 +49,5 @@ fn (app &App) draw() {
// app.gg.draw_text_def(300,300, 'привет')
app.gg.draw_rect_filled(10, 10, 100, 30, gx.blue)
app.gg.draw_rect_empty(110, 150, 80, 40, gx.black)
app.gg.draw_image_by_id(230, 30, 50, 50, app.image)
app.gg.draw_image_by_id(230, 30, 200, 200, app.image)
}