From bece5d19ed288c37efb8e0bc2ca47b5eb3ecadbb Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Fri, 8 Sep 2017 09:35:49 +0200 Subject: [PATCH] fixed bug in showing the list of cameras in the lensfun db --- rtgui/lensprofile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/lensprofile.cc b/rtgui/lensprofile.cc index bd518ffe0..6f901946e 100644 --- a/rtgui/lensprofile.cc +++ b/rtgui/lensprofile.cc @@ -360,7 +360,7 @@ void LensProfilePanel::fillLensfunCameras() for (auto &p : camnames) { Gtk::TreeModel::Row row = *(lensfunCameraModel->append()); row[lensfunModelCam.make] = p.first; - row[lensfunModelCam.model] = ""; + row[lensfunModelCam.model] = p.first; for (auto &c : p.second) { Gtk::TreeModel::Row child = *(lensfunCameraModel->append(row.children())); child[lensfunModelCam.make] = p.first;