From 5c1b47dd1a331d9db004eb77d4b493864f57d7d1 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 16 Nov 2008 11:00:27 +0000 Subject: Make autodetection show a busy cursor (hourglass) during detection to improve visual feedback. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19114 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/configure.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp index 1589477cd7..c6a4a41455 100644 --- a/rbutil/rbutilqt/configure.cpp +++ b/rbutil/rbutilqt/configure.cpp @@ -507,6 +507,7 @@ void Config::autodetect() // disable tree during detection as "working" feedback. // TODO: replace the tree view with a splash screen during this time. ui.treeDevices->setEnabled(false); + this->setCursor(Qt::WaitCursor); QCoreApplication::processEvents(); if(detector.detect()) //let it detect @@ -538,6 +539,7 @@ void Config::autodetect() } } } + this->unsetCursor(); if(!detector.errdev().isEmpty()) { QString text; @@ -579,6 +581,7 @@ void Config::autodetect() } else { + this->unsetCursor(); QMessageBox::warning(this, tr("Autodetection"), tr("Could not detect a device.\n" "Select your device and Mountpoint manually."), -- cgit v1.2.3