Show
Ignore:
Timestamp:
07/23/08 19:28:01 (4 months ago)
Author:
js
Message:

Finally fix status message tooltip in conversation window.
This also doesn't leave the tooltip when the status was removed anymore

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/chat_control.py

    r10009 r10010  
    14611461                        else: 
    14621462                                status_text = '<span %s>%s</span>' % (font_attrs_small, status_escaped) 
    1463                         self.status_tooltip.set_tip(banner_eventbox, status) 
     1463                        self.status_tooltip.set_tip(self.banner_status_label, 
     1464                                        status) 
    14641465                        self.banner_status_label.show() 
    14651466                        self.banner_status_label.set_no_show_all(False) 
    14661467                else: 
    14671468                        status_text = '' 
    1468                         self.status_tooltip.disable() 
    14691469                        self.banner_status_label.hide() 
    14701470                        self.banner_status_label.set_no_show_all(True)