Changeset 479

Show
Ignore:
Timestamp:
03/15/07 08:10:11 (17 months ago)
Author:
daelstorm
Message:

Remove color from chat brackets

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/newnet/mucous/pymucous/MucousChatRooms.py

    r478 r479  
    11691169                                        # Normal user chat 
    11701170                                        pre = " [" 
    1171                                         tw.addstr(pre, curses.A_BOLD | self.mucous.colors["black"]) 
     1171                                        tw.addstr(pre) 
    11721172                                        length += len(timestamp) + len(pre) 
    11731173                                         
     
    11881188                                        suf = "] " 
    11891189                                        length += len(suf) 
    1190                                         tw.addstr(suf, curses.A_BOLD | self.mucous.colors["black"]) 
     1190                                        tw.addstr(suf) 
    11911191                                        if mtype == "Mentioned": 
    11921192                                                x = message.split(" ") 
  • museek+/trunk/sources/mucous/pymucous/MucousChatRooms.py

    r478 r479  
    11691169                                        # Normal user chat 
    11701170                                        pre = " [" 
    1171                                         tw.addstr(pre, curses.A_BOLD | self.mucous.colors["black"]) 
     1171                                        tw.addstr(pre) 
    11721172                                        length += len(timestamp) + len(pre) 
    11731173                                         
     
    11881188                                        suf = "] " 
    11891189                                        length += len(suf) 
    1190                                         tw.addstr(suf, curses.A_BOLD | self.mucous.colors["black"]) 
     1190                                        tw.addstr(suf) 
    11911191                                        if mtype == "Mentioned": 
    11921192                                                x = message.split(" ")