Show
Ignore:
Timestamp:
09/05/07 16:15:20 (15 months ago)
Author:
asterix
Message:

Enable ellipsization in roster and chatwindow. Fixes #2079, #2739
Reorder occupantlist in groupchat to match roster. see #2102

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11.1/src/config.py

    r8724 r8732  
    576576                self.on_checkbutton_toggled(widget, 'show_avatars_in_roster') 
    577577                gajim.interface.roster.draw_roster() 
    578  
     578                # Redraw connected groupchats (in an ugly way) 
     579                for account in gajim.connections: 
     580                        if gajim.connections[account].connected: 
     581                                for gc_control in gajim.interface.msg_win_mgr.get_controls( 
     582                                        message_control.TYPE_GC) + \ 
     583                                        gajim.interface.minimized_controls[account].values(): 
     584                                                gc_control.draw_roster() 
     585         
    579586        def on_emoticons_combobox_changed(self, widget): 
    580587                active = widget.get_active()