do not show .svn and transport in the list of available iconset

This commit is contained in:
Yann Leboulanger 2005-04-21 16:25:05 +00:00
parent ac90d99212
commit 5e743e1120
1 changed files with 1 additions and 1 deletions

View File

@ -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(' ')