Is there a way to have the dropdown box showing sorted img-keys?
Ok that was easy
replace
Code:
image['values'] = img_dic.keys()
with
Code:
image['values'] = sorted(img_dic.keys())
Why is
Code:
image['values'] = img_dic.keys().sort()
exporting an empty list?