do not show .svn and transport in the list of available iconset
This commit is contained in:
parent
ac90d99212
commit
5e743e1120
1 changed files with 1 additions and 1 deletions
|
@ -651,7 +651,7 @@ class Preferences_window:
|
||||||
self.iconset_combobox.set_model(model)
|
self.iconset_combobox.set_model(model)
|
||||||
l = []
|
l = []
|
||||||
for dir in iconsets_list:
|
for dir in iconsets_list:
|
||||||
if dir != '.svn' or dir != 'transports': #FIXME: this is crazy!!
|
if dir != '.svn' and dir != 'transports':
|
||||||
l.append(dir)
|
l.append(dir)
|
||||||
if l.count == 0:
|
if l.count == 0:
|
||||||
l.append(' ')
|
l.append(' ')
|
||||||
|
|
Loading…
Add table
Reference in a new issue