Highlight whole room list row even if room name is short
This commit is contained in:
parent
122b2441c9
commit
2a02f518b2
@ -718,7 +718,7 @@ func (list *RoomList) Draw(screen tcell.Screen) {
|
||||
lineWidth -= len(unreadMessageCount) + 1
|
||||
}
|
||||
|
||||
widget.WriteLine(screen, tview.AlignLeft, text, x, y, lineWidth, style)
|
||||
widget.WriteLinePadded(screen, tview.AlignLeft, text, x, y, lineWidth, style)
|
||||
y++
|
||||
|
||||
if y >= bottomLimit {
|
||||
|
@ -20,6 +20,8 @@ import (
|
||||
"github.com/mattn/go-runewidth"
|
||||
"maunium.net/go/tcell"
|
||||
"maunium.net/go/tview"
|
||||
"fmt"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
func WriteLineSimple(screen tcell.Screen, line string, x, y int) {
|
||||
@ -57,3 +59,13 @@ func WriteLine(screen tcell.Screen, align int, line string, x, y, maxWidth int,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func WriteLinePadded(screen tcell.Screen, align int, line string, x, y, maxWidth int, style tcell.Style) {
|
||||
padding := strconv.Itoa(maxWidth)
|
||||
if align == tview.AlignRight {
|
||||
line = fmt.Sprintf("%"+padding+"s", line)
|
||||
} else {
|
||||
line = fmt.Sprintf("%-"+padding+"s", line)
|
||||
}
|
||||
WriteLine(screen, tview.AlignLeft, line, x, y, maxWidth, style)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user