hide leading dot hidden directory
This commit is contained in:
parent
1753dd90ac
commit
140ec80b9b
|
@ -439,7 +439,7 @@ class preference_Window:
|
|||
list_style = os.listdir('plugins/gtkgui/icons/')
|
||||
l = []
|
||||
for i in list_style:
|
||||
if i != 'CVS':
|
||||
if i != 'CVS' and i[0] != '.':
|
||||
l.append(i)
|
||||
if l.count == 0:
|
||||
l.append(" ")
|
||||
|
|
Loading…
Reference in New Issue