mixed up the command/desc order
This commit is contained in:
@@ -151,9 +151,9 @@ class entry_collection:
|
||||
if len(row)==1:
|
||||
row=[row[0], row[0]]
|
||||
else:
|
||||
row=[row[0], row[1].strip()+' ('+row[0].strip()+')']
|
||||
self.entries.append(launch_item(command=row[0],
|
||||
description=row[1],
|
||||
row=[row[0].strip()+' ('+row[1].strip()+')',row[1]]
|
||||
self.entries.append(launch_item(command=row[1],
|
||||
description=row[0],
|
||||
launcher="menu"))
|
||||
def read_folder(self):
|
||||
''' Read folder contents, return executable files and dirs '''
|
||||
|
||||
Reference in New Issue
Block a user