From: Stephan Witt Date: Thu, 21 Jul 2011 15:33:56 +0000 (+0000) Subject: only aspell is using spellchecker_accept_compound rc variable X-Git-Tag: 2.1.0beta1~2890 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=925ae3dd1005162d09c3f328aeaf4d042a4e892f;p=features.git only aspell is using spellchecker_accept_compound rc variable git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39361 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiPrefs.cpp b/src/frontends/qt4/GuiPrefs.cpp index 11c3e29729..cfb380f53d 100644 --- a/src/frontends/qt4/GuiPrefs.cpp +++ b/src/frontends/qt4/GuiPrefs.cpp @@ -1527,7 +1527,7 @@ void PrefSpellchecker::on_spellcheckerCB_currentIndexChanged(int index) { QString spellchecker = spellcheckerCB->itemData(index).toString(); - compoundWordCB->setEnabled(spellchecker != QString("native")); + compoundWordCB->setEnabled(spellchecker == QString("aspell")); }