From 19a64469f43148d6c4e9e2e3c99625c47a488ec1 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Mon, 12 Dec 2005 15:14:58 +0000 Subject: [PATCH] failsafe to dcraven --- src/roster_window.py | 6 +++--- src/systray.py | 2 +- src/systraywin32.py | 2 +- src/tooltips.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index 6a0b957e5..f25c5db3d 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1119,7 +1119,7 @@ class RosterWindow: # using self.jabber_status_images is poopoo iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16') state_images = self.load_iconset(path) @@ -1201,7 +1201,7 @@ class RosterWindow: menu = gtk.Menu() iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16') for account in gajim.connections: state_images = self.load_iconset(path) @@ -2173,7 +2173,7 @@ _('If "%s" accepts this request you will know his or her status.') %jid) '''initialise jabber_state_images dict''' iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '32x32') if os.path.exists(path): self.jabber_state_images['32'] = self.load_iconset(path) diff --git a/src/systray.py b/src/systray.py index 510573a78..02895ae2f 100644 --- a/src/systray.py +++ b/src/systray.py @@ -234,7 +234,7 @@ class Systray: def make_groups_submenus_for_chat_with(self, account): iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16') state_images = gajim.interface.roster.load_iconset(path) diff --git a/src/systraywin32.py b/src/systraywin32.py index 5a02e86bd..f6d9ae8e7 100644 --- a/src/systraywin32.py +++ b/src/systraywin32.py @@ -319,7 +319,7 @@ class SystrayWin32(systray.Systray): '''load .ico files and return them to a dic of SHOW --> img_obj''' iconset = str(gajim.config.get('iconset')) if not iconset: - iconset = 'sun' + iconset = 'dcraven' imgs = {} path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16', 'icos') diff --git a/src/tooltips.py b/src/tooltips.py index 6748dbb84..eef737872 100644 --- a/src/tooltips.py +++ b/src/tooltips.py @@ -210,7 +210,7 @@ class NotificationAreaTooltip(BaseTooltip, StatusTable): def fill_table_with_accounts(self, accounts): iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' file_path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16') for acct in accounts: message = acct['message'] @@ -390,7 +390,7 @@ class RosterTooltip(NotificationAreaTooltip): else: iconset = gajim.config.get('iconset') if not iconset: - iconset = 'sun' + iconset = 'dcraven' file_path = os.path.join(gajim.DATA_DIR, 'iconsets', iconset, '16x16') files = []