diff options
author | Tulir Asokan <tulir@maunium.net> | 2018-03-26 22:03:30 +0300 |
---|---|---|
committer | Tulir Asokan <tulir@maunium.net> | 2018-03-26 22:03:30 +0300 |
commit | adce6d321163b1196ca60dede81900e7813b9622 (patch) | |
tree | 36cc5632cdf101219fde149c5b31aeae40c66d47 /ui/widget | |
parent | d684187f4294d876bf12244cd5a832221ac156dc (diff) |
Don't wrap user list
Diffstat (limited to 'ui/widget')
-rw-r--r-- | ui/widget/room-view.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/widget/room-view.go b/ui/widget/room-view.go index 2da3023..4bab779 100644 --- a/ui/widget/room-view.go +++ b/ui/widget/room-view.go @@ -64,7 +64,9 @@ func NewRoomView(room *rooms.Room) *RoomView { view.status.SetBackgroundColor(tcell.ColorDimGray) - view.userList.SetDynamicColors(true) + view.userList. + SetDynamicColors(true). + SetWrap(false) return view } |