aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/applauncher
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-03-19 10:58:26 -0400
committerKen Moore <ken@pcbsd.org>2015-03-19 10:58:26 -0400
commit7981690582d551e015847d0d31e6f916c9ffbe4c (patch)
treeb9dfe8185b68085e1f7dc1dcc0ab40c915a93a78 /lumina-desktop/panel-plugins/applauncher
parentOops, forgot to add the new applauncher plugin files to GIT. (diff)
downloadlumina-7981690582d551e015847d0d31e6f916c9ffbe4c.tar.gz
lumina-7981690582d551e015847d0d31e6f916c9ffbe4c.tar.bz2
lumina-7981690582d551e015847d0d31e6f916c9ffbe4c.zip
Update some panel plugins so that they minimize empty space when only an icon is visible.
Diffstat (limited to 'lumina-desktop/panel-plugins/applauncher')
-rw-r--r--lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp b/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
index e4447ce0..5bd7fa96 100644
--- a/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
+++ b/lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp
@@ -12,7 +12,7 @@
AppLaunchButtonPlugin::AppLaunchButtonPlugin(QWidget *parent, QString id, bool horizontal) : LPPlugin(parent, id, horizontal){
button = new QToolButton(this);
button->setAutoRaise(true);
- button->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
+ button->setToolButtonStyle(Qt::ToolButtonIconOnly);
appfile = id.section("---",0,0).section("::",1,1);
if(!QFile::exists(appfile)){ appfile.clear(); }
connect(button, SIGNAL(clicked()), this, SLOT(AppClicked()));
bgstack15