From fadfc3b4579324d1268873a986501f99b617fef0 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 16 Aug 2021 06:36:19 +0300 Subject: [PATCH] gg: format a line --- vlib/gg/gg.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/gg/gg.v b/vlib/gg/gg.v index 3dcc14c9d8..8a8faaaf13 100644 --- a/vlib/gg/gg.v +++ b/vlib/gg/gg.v @@ -290,7 +290,7 @@ pub fn (ctx &Context) draw_empty_rect(x f32, y f32, w f32, h f32, c gx.Color) { sgl.v2f((x + w) * ctx.scale, y * ctx.scale) sgl.v2f((x + w) * ctx.scale, (y + h) * ctx.scale) sgl.v2f(x * ctx.scale, (y + h) * ctx.scale) - sgl.v2f(x * ctx.scale, (y-1) * ctx.scale) + sgl.v2f(x * ctx.scale, (y - 1) * ctx.scale) sgl.end() }