diff options
author | Ken Moore <ken@pcbsd.org> | 2014-11-19 10:58:40 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2014-11-19 10:58:40 -0500 |
commit | d9d958ca0508a08384a3582dea6942c77c0bd0a7 (patch) | |
tree | 115c068e33aded2b3effe6475c87f2429d385ba7 | |
parent | Tag Lumina version 0.7.2: (diff) | |
download | lumina-d9d958ca0508a08384a3582dea6942c77c0bd0a7.tar.gz lumina-d9d958ca0508a08384a3582dea6942c77c0bd0a7.tar.bz2 lumina-d9d958ca0508a08384a3582dea6942c77c0bd0a7.zip |
Oops, forgot to add knowledge of the new "Wine" app category to the userbutton.
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/UserWidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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] ); } |