From be9cc8d7f9e6abd54f758568ef201b6d8710f06d Mon Sep 17 00:00:00 2001 From: Vincent van Ravesteijn Date: Fri, 2 Apr 2010 17:33:38 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/GuiCompleter.cpp | 1 + status.16x | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/frontends/qt4/GuiCompleter.cpp b/src/frontends/qt4/GuiCompleter.cpp index 99092d1442..89a889d9dd 100644 --- a/src/frontends/qt4/GuiCompleter.cpp +++ b/src/frontends/qt4/GuiCompleter.cpp @@ -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 diff --git a/status.16x b/status.16x index d2aa4d9b45..26f40a3ef4 100644 --- a/status.16x +++ b/status.16x @@ -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