one M on incoming, and few space before/after =

This commit is contained in:
Vincent Hanquez 2003-10-26 16:44:56 +00:00
parent decb46c2a0
commit 4593339efb
1 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ class message:
if contact:
self.convTxtBuffer.insert_with_tags_by_name(end_iter, '<moi> ', 'outgoing')
else:
self.convTxtBuffer.insert_with_tags_by_name(end_iter, '<lui> ', 'incomming')
self.convTxtBuffer.insert_with_tags_by_name(end_iter, '<lui> ', 'incoming')
self.convTxtBuffer.insert(end_iter, txt+'\n')
self.conversation.scroll_to_mark(\
self.convTxtBuffer.get_mark('end'), 0.1, 0, 0, 0)
@ -109,7 +109,7 @@ class message:
self.window.show()
self.xml.signal_connect('gtk_widget_destroy', self.delete_event)
self.xml.signal_connect('on_msg_key_press_event', self.on_msg_key_press_event)
self.tag = self.convTxtBuffer.create_tag("incomming")
self.tag = self.convTxtBuffer.create_tag("incoming")
color = self.cfgParser.GtkGui_inmsgcolor
if not color : color = red
self.tag.set_property("foreground", color)