aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCerapter <cerap@protonmail.com>2018-08-16 00:44:32 +0200
committerCerapter <cerap@protonmail.com>2018-08-16 00:44:32 +0200
commitd6b6a03802e56e4e4ea06402846eb460d0cf5d00 (patch)
treee8a41617d5b228d51aa46f4416ca93ad8040723e
parent956c3b50d6c813abc149b80c5abb03d6712d1e95 (diff)
Fixed extra linebreaks after songchange in IC.
-rw-r--r--courtroom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/courtroom.cpp b/courtroom.cpp
index 717ee9db..9b579d55 100644
--- a/courtroom.cpp
+++ b/courtroom.cpp
@@ -1507,7 +1507,7 @@ void Courtroom::append_ic_songchange(QString p_songname, QString p_name)
}
ui_ic_chatlog->textCursor().insertText(" has played a song: ", normal);
- ui_ic_chatlog->textCursor().insertText(p_songname + "." + '\n', italics);
+ ui_ic_chatlog->textCursor().insertText(p_songname + ".", italics);
// If we got too many blocks in the current log, delete some from the top.
while (ui_ic_chatlog->document()->blockCount() > log_maximum_blocks)