diff options
author | Joe <rbo@gmx.us> | 2024-01-29 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-29 20:20:20 +0100 |
commit | ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28 (patch) | |
tree | 736c9ff9f24634d07a829c39247a7ee0b0bf0114 /src/i_ui.go | |
parent | noqwe (diff) | |
download | hardflip-ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28.tar.gz hardflip-ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28.tar.bz2 hardflip-ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28.tar.xz hardflip-ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28.tar.zst hardflip-ac5e7dd7aa86fa5adf263912e4b1be2fc72fde28.zip |
definite choice
Diffstat (limited to '')
-rw-r--r-- | src/i_ui.go | 3 |
1 files changed, 0 insertions, 3 deletions
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) |