Fix bugs #7165 (Auto-complete does not disappear after using it)

and      #7174 (Math selection broken)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36902 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2010-12-16 08:14:27 +00:00
parent 5179e2f4d8
commit cf85f9ce69

View File

@ -752,8 +752,9 @@ void RowPainter::paintOnlyInsets()
for (pos_type pos = row_.pos(); pos != end; ++pos) {
// If outer row has changed, nested insets are repaint completely.
Inset const * inset = par_.getInset(pos);
bool const nested_inset = inset &&
(inset->asInsetText() || inset->asInsetTabular());
bool const nested_inset = inset && (inset->inMathed() ||
inset->asInsetText() ||
inset->asInsetTabular());
if (!nested_inset)
continue;
if (x_ > pi_.base.bv->workWidth()