Skip to content
Snippets Groups Projects
Commit 5e743e11 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

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

parent ac90d992
No related branches found
No related tags found
No related merge requests found
......@@ -651,7 +651,7 @@ def __init__(self, plugin):
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(' ')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment