Changeset 9633
- Timestamp:
- 05/13/08 23:27:13 (2 months ago)
- Files:
-
- trunk/src/message_window.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/message_window.py
r9628 r9633 232 232 xml = gtkgui_helpers.get_glade('message_window.glade', 'chat_tab_ebox') 233 233 tab_label_box = xml.get_widget('chat_tab_ebox') 234 widget = xml.get_widget('tab_close_button')234 widget = xml.get_widget('tab_close_button') 235 235 id = widget.connect('clicked', self._on_close_button_clicked, control) 236 236 control.handlers[id] = widget … … 611 611 612 612 def change_thread_key(self, jid, acct, old_thread_id, new_thread_id): 613 '''Change the thread_id key of a control'''613 '''Change the thread_id key of a control''' 614 614 try: 615 615 # Check if control exists … … 925 925 win_acct = None 926 926 win_type = None 927 win_role = None # X11 window role927 win_role = None # X11 window role 928 928 929 929 win_key = self._mode_to_key(contact, acct, type, resource) … … 1089 1089 # Stash current size so it can be restored if the MessageWindow 1090 1090 # is not longer embedded 1091 roster_width = w.parent_paned.get_child1().allocation.width1091 roster_width = w.parent_paned.get_child1().allocation.width 1092 1092 gajim.config.set('roster_width', roster_width) 1093 1093
