Changeset 6271
- Timestamp:
- 05/03/06 15:22:05 (3 years ago)
- Location:
- trunk/src
- Files:
-
- 4 modified
-
chat_control.py (modified) (1 diff)
-
common/config.py (modified) (1 diff)
-
conversation_textview.py (modified) (1 diff)
-
groupchat_control.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/chat_control.py
r6265 r6271 1068 1068 1069 1069 if frm == 'status': 1070 if not gajim.config.get('print_status_in_chats'): 1071 return 1070 1072 kind = 'status' 1071 1073 name = '' -
trunk/src/common/config.py
r6170 r6271 181 181 'show_avatars_in_roster': [opt_bool, True, '', True], 182 182 'ask_avatars_on_startup': [opt_bool, True, _('If True, Gajim will ask for avatar each contact that did not have an avatar last time or has one cached that is too old.')], 183 #FIXME: remove you and make it Gajim will not; and/or his or *her* status messages184 'print_status_in_ chats': [opt_bool, True, _('If False, you will no longer see status line in chats when a contact changes his or her status and/or hisstatus message.')],183 'print_status_in_chats': [opt_bool, True, _('If False, Gajim will no longer print status line in chats when a contact changes his or her status and/or his or her status message.')], 184 'print_status_in_muc': [opt_bool, True, _('If False, Gajim will no longer print status line in groupchats when a member changes his or her status and/or his or her status message.')], 185 185 'log_contact_status_changes': [opt_bool, False], 186 186 'restored_messages_color': [opt_str, 'grey'], -
trunk/src/conversation_textview.py
r6267 r6271 570 570 other_tags_for_text = [], subject = None): 571 571 '''prints 'chat' type messages''' 572 if kind == 'status' and not gajim.config.get('print_status_in_chats'):573 return574 572 # kind = info, we print things as if it was a status: same color, ... 575 573 if kind == 'info': -
trunk/src/groupchat_control.py
r6265 r6271 506 506 self.parent_win.redraw_tab(self, 'newmsg') 507 507 else: 508 if not gajim.config.get('print_status_in_muc'): 509 return 508 510 kind = 'status' 509 511
