From b4474da931417343411e1d26282b7a2a602c9476 Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Sat, 13 Oct 2012 18:30:13 +0200 Subject: [PATCH] Automatically activate newly added external index --- src/qtgui/uiprefs_w.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qtgui/uiprefs_w.cpp b/src/qtgui/uiprefs_w.cpp index 747d2130..511c4724 100644 --- a/src/qtgui/uiprefs_w.cpp +++ b/src/qtgui/uiprefs_w.cpp @@ -494,6 +494,6 @@ void UIPrefsDialog::addExtraDbPB_clicked() } #endif QListWidgetItem *item = new QListWidgetItem(input, idxLV); - item->setCheckState(Qt::Unchecked); + item->setCheckState(Qt::Checked); idxLV->sortItems(); }