From d167e5eae4780a28d61f3bf91eaf82c8707dce25 Mon Sep 17 00:00:00 2001 From: "anton.gurov" Date: Tue, 19 Nov 2019 17:28:37 +0300 Subject: [PATCH] some more inventory improvements --- ui/mainwindow/layer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/mainwindow/layer.go b/ui/mainwindow/layer.go index a7e4c41..1984303 100644 --- a/ui/mainwindow/layer.go +++ b/ui/mainwindow/layer.go @@ -104,7 +104,7 @@ func (layer Layer) PutStringInto(rect types.Rect, topOffset int, string string, if topOffset > rect.H - 2 { return false } - blt.PrintExt(rect.X + 2, rect.Y + topOffset, rect.W - 4, rect.H - 4, alignment, string) + blt.PrintExt(rect.X + 2, rect.Y + topOffset + 2, rect.W - 4, rect.H - 4, alignment, string) return true }