From 7981690582d551e015847d0d31e6f916c9ffbe4c Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 19 Mar 2015 10:58:26 -0400 Subject: Update some panel plugins so that they minimize empty space when only an icon is visible. --- lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lumina-desktop/panel-plugins/applauncher/AppLaunchButton.cpp') 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())); -- cgit