Fix ascii/unicode errors (mintmenu not loading in Mint 15 - French)
This commit is contained in:
parent
5fae44d59f
commit
61793ab7d8
@ -289,9 +289,9 @@ class ApplicationLauncher( easyButton ):
|
||||
|
||||
def loadDesktopEntry( self, desktopItem ):
|
||||
try:
|
||||
self.appName = desktopItem.getName()
|
||||
self.appGenericName = desktopItem.getGenericName()
|
||||
self.appComment = desktopItem.getComment()
|
||||
self.appName = strip_accents(desktopItem.getName())
|
||||
self.appGenericName = strip_accents(desktopItem.getGenericName())
|
||||
self.appComment = strip_accents(desktopItem.getComment())
|
||||
self.appExec = desktopItem.getExec()
|
||||
self.appIconName = desktopItem.getIcon()
|
||||
self.appCategories = desktopItem.getCategories()
|
||||
|
Loading…
Reference in New Issue
Block a user