aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-19 16:53:04 -0400
committerKen Moore <moorekou@gmail.com>2015-10-19 16:53:04 -0400
commit2744f4f8cad1df2b7f3b686b5d3c3dfa49d3af48 (patch)
treec6cc2883e89b424b662820a0012360557fae46d5 /lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
parentUpdate how the PC-BSD overlay files for Lumina are installed. Now there is a ... (diff)
downloadlumina-2744f4f8cad1df2b7f3b686b5d3c3dfa49d3af48.tar.gz
lumina-2744f4f8cad1df2b7f3b686b5d3c3dfa49d3af48.tar.bz2
lumina-2744f4f8cad1df2b7f3b686b5d3c3dfa49d3af48.zip
Convert the desktop-plugin "applauncher" (desktop icons) to use a double-click for launching items instead of a single click.
Diffstat (limited to 'lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp')
-rw-r--r--lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp b/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
index e1f55771..5f429c5f 100644
--- a/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
+++ b/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
@@ -14,7 +14,7 @@ AppLauncherPlugin::AppLauncherPlugin(QWidget* parent, QString ID) : LDPlugin(par
button->setText("...\n..."); //Need to set something here so that initial sizing works properly
button->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
lay->addWidget(button, 0, Qt::AlignCenter);
- connect(button, SIGNAL(clicked()), this, SLOT(buttonClicked()) );
+ connect(button, SIGNAL(DoubleClicked()), this, SLOT(buttonClicked()) );
//menu = new QMenu(this);
/*int icosize = this->readSetting("iconsize",-1).toInt();
if(icosize <1){
bgstack15