Occupy rest of terminal space

After realizing what I'd have to go through to build a functional "Users
online:" view, I have decided to NOT do that, especially because this
entire thing still runs on raw TCP messages for commmunication and
trying to tell apart regular messages from join/disconnect messages in
the client to properly update the possible new view would be hell.
This commit is contained in:
raul 2024-05-07 09:49:34 +02:00
parent 370f217208
commit 9e1affdc6c
1 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ func initKeybindings(g *gocui.Gui) error {
func layout(g *gocui.Gui) error { func layout(g *gocui.Gui) error {
maxX, maxY := g.Size() maxX, maxY := g.Size()
if chatbox, err := g.SetView("chatbox", 2, 1, maxX-28, maxY-5); err != nil { if chatbox, err := g.SetView("chatbox", 2, 1, maxX-2, maxY-5); err != nil {
if err != gocui.ErrUnknownView { if err != gocui.ErrUnknownView {
return err return err
} }
@ -228,7 +228,7 @@ func layout(g *gocui.Gui) error {
// fmt.Fprintln(button, "Send it") // fmt.Fprintln(button, "Send it")
// } // }
if textarea, err := g.SetView("textarea", 2, maxY-4, maxX-28, maxY-2); err != nil { if textarea, err := g.SetView("textarea", 2, maxY-4, maxX-2, maxY-2); err != nil {
if err != gocui.ErrUnknownView { if err != gocui.ErrUnknownView {
return err return err
} }