mixed up the command/desc order
This commit is contained in:
@@ -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 '''
|
||||||
|
|||||||
Reference in New Issue
Block a user