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/')
|
list_style = os.listdir('plugins/gtkgui/icons/')
|
||||||
l = []
|
l = []
|
||||||
for i in list_style:
|
for i in list_style:
|
||||||
if i != 'CVS':
|
if i != 'CVS' and i[0] != '.':
|
||||||
l.append(i)
|
l.append(i)
|
||||||
if l.count == 0:
|
if l.count == 0:
|
||||||
l.append(" ")
|
l.append(" ")
|
||||||
|
|
Loading…
Reference in New Issue