summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-02-03 23:37:22 +0100
committermathieui <mathieui@mathieui.net>2014-02-03 23:37:22 +0100
commit199ac46d90576062ae21e49cc266d53d1ede8689 (patch)
treec3baad82691faeaac7ba76ff78e652e0c1bf7836 /src
parentfe4404d3f08fee2de08fd2a670b97412c2d70962 (diff)
downloadpoezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.gz
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.bz2
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.xz
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.zip
Fix #2208 (time_marker shows an useless timestamp)
Diffstat (limited to 'src')
-rw-r--r--src/windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windows.py b/src/windows.py
index bd6c32bc..ff145d13 100644
--- a/src/windows.py
+++ b/src/windows.py
@@ -967,7 +967,7 @@ class TextWin(Win):
else:
self.write_text(y,
# Offset for the timestamp (if any) plus a space after it
- (0 if not with_timestamps else (len(line.msg.str_time) + 1)) +
+ (0 if not with_timestamps else (len(line.msg.str_time) + (1 if line.msg.str_time else 0) )) +
# Offset for the nickname (if any) plus a space and a > after it
(0 if not line.msg.nickname else (poopt.wcswidth(truncate_nick(line.msg.nickname)) + (3 if line.msg.me else 2) + ceil(log10(line.msg.revisions + 1)))),
line.prepend+line.msg.txt[line.start_pos:line.end_pos])