diff options
author | Ken Moore <moorekou@gmail.com> | 2015-10-26 15:58:45 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-10-26 15:58:45 -0400 |
commit | 7ee91f5daf77906141bb04ecd59f161a14e3e06a (patch) | |
tree | e417345305bca64d165a00ca7251832e4f4901d6 | |
parent | Update the iXsystems logo in lumina-info. Now it uses the new "blue" logo. (diff) | |
download | lumina-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.cpp | 2 |
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(){ |