diff options
author | Ken Moore <ken@pcbsd.org> | 2015-03-19 10:58:26 -0400 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-03-19 10:58:26 -0400 |
commit | 7981690582d551e015847d0d31e6f916c9ffbe4c (patch) | |
tree | b9dfe8185b68085e1f7dc1dcc0ab40c915a93a78 /lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp | |
parent | Oops, forgot to add the new applauncher plugin files to GIT. (diff) | |
download | lumina-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/AppLaunchButton.cpp')
-rw-r--r-- | lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp | 2 |
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())); |