diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-19 02:35:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-19 02:35:50 -0600 |
commit | 0522d9d3a856c77220e1882e2d294cad6eb59772 (patch) | |
tree | a335b6973d22fa8cc7bb653acd0a711e13bb0477 /kdesktop | |
parent | 9b5a657db280afea1a221fbe8b00ea14cdfff045 (diff) | |
download | tdebase-0522d9d3a856c77220e1882e2d294cad6eb59772.tar.gz tdebase-0522d9d3a856c77220e1882e2d294cad6eb59772.zip |
Show busy cursor when lock dialog is busy instead of hiding cursor
Diffstat (limited to 'kdesktop')
-rw-r--r-- | kdesktop/lock/lockprocess.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/lock/lockprocess.cc b/kdesktop/lock/lockprocess.cc index 635e15e1f..22862d2ba 100644 --- a/kdesktop/lock/lockprocess.cc +++ b/kdesktop/lock/lockprocess.cc @@ -1082,7 +1082,7 @@ bool LockProcess::grabMouse() { int rv = XGrabPointer( qt_xdisplay(), TQApplication::desktop()->winId(), True, GRABEVENTS, GrabModeAsync, GrabModeAsync, None, - TQCursor(tqblankCursor).handle(), CurrentTime ); + TQCursor(tqbusyCursor).handle(), CurrentTime ); return (rv == GrabSuccess); } @@ -1662,7 +1662,7 @@ int LockProcess::execDialog( TQDialog *dlg ) mDialogs.remove( dlg ); if( mDialogs.isEmpty() ) { XChangeActivePointerGrab( qt_xdisplay(), GRABEVENTS, - TQCursor(tqblankCursor).handle(), CurrentTime); + TQCursor(tqbusyCursor).handle(), CurrentTime); if (trinity_desktop_lock_use_system_modal_dialogs) { // Slight delay before screensaver resume to allow the dialog window to fully disappear if (hackResumeTimer == NULL) { |