diff options
| author | Xavier Del Campo <xavi.dcr@tutanota.com> | 2021-10-02 11:32:04 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-04-13 13:46:32 +0200 |
| commit | f2930849c03c271e8be16d84d3bc8d53ea72684c (patch) | |
| tree | fa9b6993c7b2f4a5de4db43fd19128555e9b14af | |
| parent | 9db3d08b512fb2badb8ab0d82f98f5d583063df4 (diff) | |
Do not prepend nick to quotesdesktop-fork
| -rw-r--r-- | main/src/ui/conversation_view.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/ui/conversation_view.vala b/main/src/ui/conversation_view.vala index 6015b2c9..ea9be1a6 100644 --- a/main/src/ui/conversation_view.vala +++ b/main/src/ui/conversation_view.vala @@ -31,7 +31,7 @@ public class ConversationView : Gtk.Overlay { text_to_quote = quotes.replace(text_to_quote, -1, 0, ""); text_to_quote = whitespace.replace(text_to_quote, -1, 0, "\n"); - text_to_quote = "%s: %s".printf(nick, text_to_quote); + text_to_quote = "%s".printf(text_to_quote); text_to_quote = first_column.replace(text_to_quote, -1, 0, "\\1> \\2"); |
