summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt')
-rw-r--r--rbutil/rbutilqt/configure.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/configure.cpp b/rbutil/rbutilqt/configure.cpp
index 4bcfc41a8b..456e65cdd9 100644
--- a/rbutil/rbutilqt/configure.cpp
+++ b/rbutil/rbutilqt/configure.cpp
@@ -765,7 +765,8 @@ void Config::autodetect()
765 QMessageBox::Ok ,QMessageBox::Ok); 765 QMessageBox::Ok ,QMessageBox::Ok);
766 ui.treeDevices->setEnabled(true); 766 ui.treeDevices->setEnabled(true);
767 } 767 }
768 else if(detected.at(0).status != Autodetection::PlayerOk) { 768 else if(detected.at(0).status != Autodetection::PlayerOk
769 && detected.at(0).status != Autodetection::PlayerAmbiguous) {
769 QString msg; 770 QString msg;
770 switch(detected.at(0).status) { 771 switch(detected.at(0).status) {
771 case Autodetection::PlayerIncompatible: 772 case Autodetection::PlayerIncompatible:
@@ -796,9 +797,8 @@ void Config::autodetect()
796 } 797 }
797 break; 798 break;
798 case Autodetection::PlayerError: 799 case Autodetection::PlayerError:
799 msg += tr("An unknown error occured during player detection.");
800 break;
801 default: 800 default:
801 msg += tr("An unknown error occured during player detection.");
802 break; 802 break;
803 } 803 }
804 QMessageBox::information(this, tr("Device Detection"), msg); 804 QMessageBox::information(this, tr("Device Detection"), msg);