aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-11-14 12:14:03 -0500
committerKen Moore <ken@pcbsd.org>2014-11-14 12:14:03 -0500
commitf0e09f3d0fe234eb1748d7c6f94c6ddfc37fe6cc (patch)
tree1a58e7518a782df4a8ca78c6c4e56a185e02edb3 /lumina-desktop
parentAdd detection/conversion of relative file paths to absolute file paths within... (diff)
downloadlumina-f0e09f3d0fe234eb1748d7c6f94c6ddfc37fe6cc.tar.gz
lumina-f0e09f3d0fe234eb1748d7c6f94c6ddfc37fe6cc.tar.bz2
lumina-f0e09f3d0fe234eb1748d7c6f94c6ddfc37fe6cc.zip
Update the XDG categories that are supported, as well as the add a new "Wine" category for internal recognition/use (since the wine apps do not usually list a category in the *.desktop file).
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/AppMenu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/AppMenu.cpp b/lumina-desktop/AppMenu.cpp
index 590cf35b..074bd9f1 100644
--- a/lumina-desktop/AppMenu.cpp
+++ b/lumina-desktop/AppMenu.cpp
@@ -68,6 +68,7 @@ void AppMenu::updateAppList(){
else if(cats[i] == "Settings"){ name = tr("Settings"); icon = "preferences-system"; }
else if(cats[i] == "System"){ name = tr("System"); icon = "applications-system"; }
else if(cats[i] == "Utility"){ name = tr("Utility"); icon = "applications-utilities"; }
+ else if(cats[i] == "Wine"){ name = tr("Wine"); icon = "wine"; }
else{ name = tr("Unsorted"); icon = "applications-other"; }
QMenu *menu = new QMenu(name, this);
bgstack15