Applications: Don't show duplicates by default (prior to applying filters)

This commit is contained in:
monsta 2014-07-28 11:21:20 +04:00
parent d977c73223
commit 5bc55925ef

View File

@ -1755,8 +1755,15 @@ class pluginclass( object ):
sortedApplicationList.sort() sortedApplicationList.sort()
launcherNames = [] # Keep track of launcher names so we don't add them twice in the list..
for item in sortedApplicationList: for item in sortedApplicationList:
self.applicationsBox.pack_start( item[1], False, False, 0 ) launcherName = item[0]
button = item[1]
self.applicationsBox.pack_start( button, False, False, 0 )
if launcherName in launcherNames:
button.hide()
else:
launcherNames.append(launcherName)
self.rebuildLock = False self.rebuildLock = False