Skip to content
Snippets Groups Projects
Unverified Commit f8a77091 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

mediasettingsview: refresh hotplug list when removing last camera

Change-Id: I10edf50084e422a78d8a392647c723d78f8ef3d1
Gitlab: #1161
parent 071a7e23
No related branches found
No related tags found
No related merge requests found
......@@ -290,12 +290,16 @@ CppImpl::drawVideoDevices()
}
auto active = 0;
auto current = avModel_->getDefaultDevice();
// Clean comboboxes
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(widgets->combobox_device));
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(widgets->combobox_channel));
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(widgets->combobox_resolution));
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(widgets->combobox_framerate));
if (current == "") {
// Avoid to draw devices if no camera is selected
return;
}
auto i = 0;
gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(widgets->combobox_device));
for (const auto& device : avModel_->getDevices()) {
if (device == current) {
active = i;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment