From 5e743e1120d9bbd3ee35bd5b3ea3279c63801d81 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Thu, 21 Apr 2005 16:25:05 +0000 Subject: [PATCH] do not show .svn and transport in the list of available iconset --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index bf9a78441..7bf66c1bb 100644 --- a/src/config.py +++ b/src/config.py @@ -651,7 +651,7 @@ class Preferences_window: self.iconset_combobox.set_model(model) l = [] for dir in iconsets_list: - if dir != '.svn' or dir != 'transports': #FIXME: this is crazy!! + if dir != '.svn' and dir != 'transports': l.append(dir) if l.count == 0: l.append(' ')