Changeset 7949 for branches/gajim_0.11/src/gajim.py
- Timestamp:
- 02/07/07 20:05:23 (22 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11/src/gajim.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11/src/gajim.py
r7941 r7949 1515 1515 gajim.block_signed_in_notifications[account] = True 1516 1516 self.roster.actions_menu_needs_rebuild = True 1517 if gajim.interface.sleeper.getState() != common.sleepy.STATE_UNKNOWN and \1517 if self.sleeper.getState() != common.sleepy.STATE_UNKNOWN and \ 1518 1518 gajim.connections[account].connected in (2, 3): 1519 1519 # we go online or free for chat, so we activate auto status … … 1789 1789 counter = 0 1790 1790 # Calculate the side lenght of the popup to make it a square 1791 size = int(round(math.sqrt(len( gajim.interface.emoticons_images))))1792 for image in gajim.interface.emoticons_images:1791 size = int(round(math.sqrt(len(self.emoticons_images)))) 1792 for image in self.emoticons_images: 1793 1793 item = gtk.MenuItem() 1794 1794 img = gtk.Image() … … 1815 1815 self.emoticons_images = list() 1816 1816 self.emoticons = dict() 1817 self.emoticons_animations = dict() 1817 1818 1818 1819 path = os.path.join(gajim.DATA_DIR, 'emoticons', emot_theme)
