From ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 29 Jan 2024 20:20:20 +0100 Subject: definite choice --- src/i_ui.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/i_ui.go') diff --git a/src/i_ui.go b/src/i_ui.go index 9962df7..b7b83a9 100644 --- a/src/i_ui.go +++ b/src/i_ui.go @@ -156,9 +156,6 @@ func i_draw_msg(s tcell.Screen, lines int, box_style tcell.Style, box_style) s.SetContent(0, dim[H] - 2, tcell.RuneLLCorner, nil, box_style) s.SetContent(dim[W] - 1, dim[H] - 2, tcell.RuneLRCorner, nil, box_style) - // s.SetContent(dim[W] / 3, dim[H] - 2 - lines, tcell.RuneBTee, nil, ) - // s.SetContent(0, dim[H] - 2 - lines, tcell.RuneLTee, nil, ) - // s.SetContent(dim[W] - 1, dim[H] - 2 - lines, tcell.RuneRTee, nil, ) for y := dim[H] - 2 - lines + 1; y < dim[H] - 2; y++ { for x := 1; x < dim[W] - 1; x++ { s.SetContent(x, y, ' ', nil, box_style) -- cgit v1.2.3