mixed up the command/desc order

This commit is contained in:
q
2013-01-06 10:31:11 +02:00
parent 70cb3500c9
commit e9bcc15796

View File

@@ -151,9 +151,9 @@ class entry_collection:
if len(row)==1: if len(row)==1:
row=[row[0], row[0]] row=[row[0], row[0]]
else: else:
row=[row[0], row[1].strip()+' ('+row[0].strip()+')'] row=[row[0].strip()+' ('+row[1].strip()+')',row[1]]
self.entries.append(launch_item(command=row[0], self.entries.append(launch_item(command=row[1],
description=row[1], description=row[0],
launcher="menu")) launcher="menu"))
def read_folder(self): def read_folder(self):
''' Read folder contents, return executable files and dirs ''' ''' Read folder contents, return executable files and dirs '''