From d6d14f802afd121cd5e9bfa22adedfbf6b752c1d Mon Sep 17 00:00:00 2001 From: Abs62 Date: Thu, 17 Apr 2014 21:33:00 +0400 Subject: [PATCH] Full-text search: Fix storing of "Match case" checkbox state --- fulltextsearch.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fulltextsearch.cc b/fulltextsearch.cc index 1c15e3fc..7041ecc9 100644 --- a/fulltextsearch.cc +++ b/fulltextsearch.cc @@ -167,6 +167,8 @@ FullTextSearchDialog::FullTextSearchDialog( QWidget * parent, ui.articlesPerDictionary->setMaximum( MaxArticlesPerDictionary ); ui.articlesPerDictionary->setValue( cfg.preferences.fts.maxArticlesPerDictionary ); + ui.matchCase->setChecked( cfg.preferences.fts.matchCase ); + setLimitsUsing(); connect( ui.checkBoxDistanceBetweenWords, SIGNAL( stateChanged( int ) ),