Changeset 9848
- Timestamp:
- 06/27/08 01:37:24 (4 months ago)
- Location:
- trunk/src
- Files:
-
- 2 modified
-
gajim.py (modified) (1 diff)
-
message_window.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gajim.py
r9847 r9848 1035 1035 1036 1036 # show avatar in chat 1037 ctrl = None 1037 1038 if resource and self.msg_win_mgr.has_window(fjid, account): 1038 1039 win = self.msg_win_mgr.get_window(fjid, account) -
trunk/src/message_window.py
r9847 r9848 446 446 jid = gajim.get_jid_without_resource(fjid) 447 447 448 fctrl s = self.get_controls(fjid, ctrl.account)449 bctrl s = self.get_controls(jid, ctrl.account)448 fctrl = self.get_control(fjid, ctrl.account) 449 bctrl = self.get_control(jid, ctrl.account) 450 450 # keep last_message_time around unless this was our last control with 451 451 # that jid 452 if not fctrl s and not bctrls:452 if not fctrl and not bctrl: 453 453 del gajim.last_message_time[ctrl.account][fjid] 454 454
