aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-12-01 14:48:57 -0500
committerKen Moore <moorekou@gmail.com>2015-12-01 14:48:57 -0500
commit5d402d51bc8b36f3c8568703f83338534dbcbd5c (patch)
tree9b7ec37a25b7d14cc9622dc8e9acbddd1c9ac3e1 /lumina-desktop/panel-plugins
parentOops - fix an issue with opening the home dir from the new appmenu. (diff)
downloadlumina-5d402d51bc8b36f3c8568703f83338534dbcbd5c.tar.gz
lumina-5d402d51bc8b36f3c8568703f83338534dbcbd5c.tar.bz2
lumina-5d402d51bc8b36f3c8568703f83338534dbcbd5c.zip
Change the text of the app menu plugin to have the button now say "Applications".
Diffstat (limited to 'lumina-desktop/panel-plugins')
-rw-r--r--lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
index f2d55c5e..5e8dc7ac 100644
--- a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
+++ b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
@@ -32,7 +32,7 @@ LAppMenuPlugin::~LAppMenuPlugin(){
void LAppMenuPlugin::updateButtonVisuals(){
button->setToolTip( tr("Quickly launch applications or open files"));
- button->setText( tr("Start Here") );
+ button->setText( tr("Applications") );
//Use the PC-BSD icon by default (or the Lumina icon for non-PC-BSD systems)
button->setIcon( LXDG::findIcon("pcbsd","Lumina-DE") );
}
bgstack15