aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-09-08 17:10:02 -0400
committerKen Moore <ken@ixsystems.com>2017-09-08 17:10:02 -0400
commitaf22aca563b822941825309b562379a01c84fba7 (patch)
tree1ba505752222aa0a45c247acbd012b15da058135 /src-qt5/core/lumina-desktop/LSession.cpp
parentChange the icon used for the "show errors" button in the file operation tray ... (diff)
downloadlumina-af22aca563b822941825309b562379a01c84fba7.tar.gz
lumina-af22aca563b822941825309b562379a01c84fba7.tar.bz2
lumina-af22aca563b822941825309b562379a01c84fba7.zip
Turn off the mouse override cursor when launching apps. The new "ExternalProcess" class can provide a better way of doing that on a per-process basis.
Diffstat (limited to 'src-qt5/core/lumina-desktop/LSession.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/LSession.cpp b/src-qt5/core/lumina-desktop/LSession.cpp
index bbed6d79..2a1ec783 100644
--- a/src-qt5/core/lumina-desktop/LSession.cpp
+++ b/src-qt5/core/lumina-desktop/LSession.cpp
@@ -572,7 +572,7 @@ void LSession::SessionEnding(){
// SYSTEM ACCESS
//===============
void LSession::LaunchApplication(QString cmd){
- LSession::setOverrideCursor(QCursor(Qt::BusyCursor));
+ //LSession::setOverrideCursor(QCursor(Qt::BusyCursor));
ExternalProcess::launch(cmd);
//QProcess::startDetached(cmd);
}
bgstack15