aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-04 08:39:47 -0500
committerKen Moore <moorekou@gmail.com>2015-11-04 08:39:47 -0500
commitfa6fac1c60a3f547c511418502f508fbe4ffb3c4 (patch)
tree398a22673a6372cc98aac4a9e428e058709ff4cd /lumina-desktop/desktop-plugins
parentClean up the Screensaver framework a bit more, add a test flag (--test-ss), a... (diff)
downloadlumina-fa6fac1c60a3f547c511418502f508fbe4ffb3c4.tar.gz
lumina-fa6fac1c60a3f547c511418502f508fbe4ffb3c4.tar.bz2
lumina-fa6fac1c60a3f547c511418502f508fbe4ffb3c4.zip
Tweak the text in the desktop plugin menu a bit.
Diffstat (limited to 'lumina-desktop/desktop-plugins')
-rw-r--r--lumina-desktop/desktop-plugins/LDPlugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/desktop-plugins/LDPlugin.cpp b/lumina-desktop/desktop-plugins/LDPlugin.cpp
index b238a207..69505705 100644
--- a/lumina-desktop/desktop-plugins/LDPlugin.cpp
+++ b/lumina-desktop/desktop-plugins/LDPlugin.cpp
@@ -36,8 +36,8 @@ void LDPlugin::setupMenu(){
menu->addAction( LXDG::findIcon("transform-move",""), tr("Start Moving Item"), this, SLOT(slotStartMove()) );
menu->addAction( LXDG::findIcon("transform-scale",""), tr("Start Resizing Item"), this, SLOT(slotStartResize()) );
menu->addSeparator();
- menu->addAction( LXDG::findIcon("zoom-in",""), tr("Increase Desktop Icon Sizes"), this, SIGNAL(IncreaseIconSize()) );
- menu->addAction( LXDG::findIcon("zoom-out",""), tr("Decrease Desktop Icon Sizes"), this, SIGNAL(DecreaseIconSize()) );
+ menu->addAction( LXDG::findIcon("zoom-in",""), tr("Increase Item Sizes"), this, SIGNAL(IncreaseIconSize()) );
+ menu->addAction( LXDG::findIcon("zoom-out",""), tr("Decrease Item Sizes"), this, SIGNAL(DecreaseIconSize()) );
menu->addSeparator();
menu->addAction( LXDG::findIcon("edit-delete",""), tr("Remove Item"), this, SLOT(slotRemovePlugin()) );
}
bgstack15