Check item alias

This commit is contained in:
neolao 2018-08-02 12:36:53 +02:00 committed by GitHub
parent d528510bca
commit dac49f9df9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,12 @@ class ListItem(object):
self._Path = text
label_text = os.path.basename(text)
alias_file = os.path.splitext(text)[0] + ".alias"
if os.path.isfile(alias_file):
fp = open(alias_file, "r")
alias = fp.read()
fp.close()
label_text = alias
if self._MyType == ICON_TYPES["DIR"]:
l.Init(label_text,self._Fonts["normal"])