From f703aa0600b8160653a226acf396b8a7ee1f043f Mon Sep 17 00:00:00 2001 From: Umang Jain Date: Thu, 30 Apr 2020 16:00:02 +0000 Subject: qcam: main_window: Fix combo-box entry selection on startup When one of the camera is selected and opened from the "Select Cameras" items list, the entry of the combo-box in the main-window doesn't update its item index to reflect the camera which was earlier selected. Fix that. Signed-off-by: Umang Jain Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart Tested-by: Kieran Bingham Signed-off-by: Laurent Pinchart --- src/qcam/main_window.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/qcam') diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp index c95d0973..5a2ac699 100644 --- a/src/qcam/main_window.cpp +++ b/src/qcam/main_window.cpp @@ -250,6 +250,9 @@ int MainWindow::openCamera() return -EBUSY; } + /* Set the combo-box entry with the currently selected Camera. */ + cameraCombo_->setCurrentText(QString::fromStdString(cameraName)); + return 0; } -- cgit v1.2.1