aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-10-26 15:58:45 -0400
committerKen Moore <moorekou@gmail.com>2015-10-26 15:58:45 -0400
commit7ee91f5daf77906141bb04ecd59f161a14e3e06a (patch)
treee417345305bca64d165a00ca7251832e4f4901d6
parentUpdate the iXsystems logo in lumina-info. Now it uses the new "blue" logo. (diff)
downloadlumina-7ee91f5daf77906141bb04ecd59f161a14e3e06a.tar.gz
lumina-7ee91f5daf77906141bb04ecd59f161a14e3e06a.tar.bz2
lumina-7ee91f5daf77906141bb04ecd59f161a14e3e06a.zip
When locking the screen via the new start menu, don't use the "LaunchApp" function, just start the process externally (prevent changing the mouse cursor to the "loading" icon.
-rw-r--r--lumina-desktop/panel-plugins/systemstart/StartMenu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
index 009e2351..a18478e6 100644
--- a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
+++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
@@ -354,7 +354,7 @@ void StartMenu::on_tool_launch_deskinfo_clicked(){
//Logout Buttons
void StartMenu::on_tool_lock_clicked(){
- LaunchItem("xscreensaver-command -lock", false);
+ QProcess::startDetached("xscreensaver-command -lock");
}
void StartMenu::on_tool_logout_clicked(){
bgstack15