branch: Make the auto-completion case-insensitive.

see r32909.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@34031 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2010-04-02 17:33:38 +00:00
parent f292717f5d
commit be9cc8d7f9
2 changed files with 3 additions and 0 deletions

View File

@ -165,6 +165,7 @@ GuiCompleter::GuiCompleter(GuiWorkArea * gui, QObject * parent)
model_ = new GuiCompletionModel(this, 0);
setModel(model_);
setCompletionMode(QCompleter::PopupCompletion);
setCaseSensitivity(Qt::CaseInsensitive);
setWidget(gui_);
// create the popup

View File

@ -287,6 +287,8 @@ What's new
- Fix the painting of the background of previewed displayed math.
- Make the auto-completion case-insensitive.
* DOCUMENTATION AND LOCALIZATION