diff options
author | Ken Moore <moorekou@gmail.com> | 2015-10-19 16:53:04 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-10-19 16:53:04 -0400 |
commit | 2744f4f8cad1df2b7f3b686b5d3c3dfa49d3af48 (patch) | |
tree | c6cc2883e89b424b662820a0012360557fae46d5 /lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp | |
parent | Update how the PC-BSD overlay files for Lumina are installed. Now there is a ... (diff) | |
download | lumina-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.cpp | 2 |
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){ |