diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp
index 344b7ec..fa05515 100644
--- a/src/qcam/main_window.cpp
+++ b/src/qcam/main_window.cpp
@@ -249,6 +249,10 @@ int MainWindow::openCamera()
 		return -EBUSY;
 	}
 
+	/* Set the combo-box with the current selected Camera */
+	int camIndex = cameraCombo_->findText(QString::fromStdString(cameraName));
+	cameraCombo_->setCurrentIndex(camIndex);
+
 	return 0;
 }
 
