summaryrefslogtreecommitdiff
path: root/poezio/ui
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-05-22 01:32:11 +0200
committermathieui <mathieui@mathieui.net>2020-05-23 16:10:13 +0200
commitb7423ee43bb14fc97b5db090206cee7a76e8b368 (patch)
treea3771551450ee001bff82e93b734f4f23e94acc3 /poezio/ui
parente488b75737f0d691b606b4ac00afcae2ea4ed7b0 (diff)
downloadpoezio-b7423ee43bb14fc97b5db090206cee7a76e8b368.tar.gz
poezio-b7423ee43bb14fc97b5db090206cee7a76e8b368.tar.bz2
poezio-b7423ee43bb14fc97b5db090206cee7a76e8b368.tar.xz
poezio-b7423ee43bb14fc97b5db090206cee7a76e8b368.zip
Remove "top" message logic
Diffstat (limited to 'poezio/ui')
-rw-r--r--poezio/ui/render.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/poezio/ui/render.py b/poezio/ui/render.py
index a431b4e7..c85d3cc5 100644
--- a/poezio/ui/render.py
+++ b/poezio/ui/render.py
@@ -94,8 +94,6 @@ def build_message(msg: Message, width: int, timestamp: bool, nick_size: int = 10
offset = msg.compute_offset(timestamp, nick_size)
lines = poopt.cut_text(txt, width - offset - 1)
generated_lines = generate_lines(lines, msg, default_color='')
- if msg.top:
- generated_lines.reverse()
return generated_lines