From d9d958ca0508a08384a3582dea6942c77c0bd0a7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 19 Nov 2014 10:58:40 -0500 Subject: Oops, forgot to add knowledge of the new "Wine" app category to the userbutton. --- lumina-desktop/panel-plugins/userbutton/UserWidget.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'lumina-desktop/panel-plugins') diff --git a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp index 4c2f00d9..569d9f7e 100644 --- a/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp +++ b/lumina-desktop/panel-plugins/userbutton/UserWidget.cpp @@ -211,6 +211,7 @@ void UserWidget::updateAppCategories(){ 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("Utilities"); icon = "applications-utilities"; } + else if(cats[i] == "Wine"){ name = tr("Wine"); icon = "wine"; } else{ name = tr("Unsorted"); icon = "applications-other"; } ui->combo_app_cats->addItem( LXDG::findIcon(icon,""), name, cats[i] ); } -- cgit