From 7ee91f5daf77906141bb04ecd59f161a14e3e06a Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 26 Oct 2015 15:58:45 -0400 Subject: 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. --- lumina-desktop/panel-plugins/systemstart/StartMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(){ -- cgit