Changeset 7609 for trunk/src/statusicon.py
- Timestamp:
- 12/05/06 19:45:02 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/statusicon.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/statusicon.py
r7440 r7609 27 27 # leave, enter motion notify 28 28 # and can't do cool tooltips we use 29 # and we could use blinking instead of unsupported animation30 # or we could emulate animation by every foo ms chaning the image31 29 def __init__(self): 32 30 systray.Systray.__init__(self) … … 56 54 self.status_icon.set_tooltip(text) 57 55 if gajim.events.get_nb_systray_events(): 58 state = 'message' 56 state = 'message' # FIXME: this state should be called event, not message 57 self.status_icon.props.blinking = True 59 58 else: 60 59 state = self.status 60 self.status_icon.props.blinking = False 61 61 62 #FIXME: do not always use 16x16 (ask actually used size and use that) 62 63 image = gajim.interface.roster.jabber_state_images['16'][state]
