From 4330b724859d13cefc809e6ed80f96ea82452136 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 17 Nov 2005 22:29:03 +0000 Subject: [PATCH] when we reply to a single message, we add > ad the begining of each line of the quoted message --- src/dialogs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dialogs.py b/src/dialogs.py index d3d8b1448..342962332 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -970,6 +970,9 @@ class SingleMessageWindow: if self.action == 'send': if self.message: # we come from a reply? self.message_textview.grab_focus() + # add > at the begining of each line + self.message = '>' + self.message + self.message = self.message.replace('\n', '\n>') else: # we write a new message self.subject_entry.grab_focus() elif self.action == 'receive':