fix crash when doing nothing (from John) and upgrade Martin in CREDITS

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3669 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-03-05 16:18:02 +00:00
parent c49a1f8c07
commit 1846e91782
5 changed files with 16 additions and 5 deletions

View File

@ -247,6 +247,7 @@
@bMartin Vermeer
@iE-mail: martin.vermeer@hut.fi
svjour/svjog, egs and llncs document classes
Lot of bug hunting (and fixing!)
@bJuergen Vigna
@iE-mail: jug@sad.it
complete rewrite of the tabular, text inset

View File

@ -1,3 +1,8 @@
2002-03-05 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* CREDITS: document that Martin Vermeer is also a very good bug
hunter
2002-03-05 Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
* layouts/db_stdclass.inc:

View File

@ -9,7 +9,6 @@ src/converter.C
src/CutAndPaste.C
src/debug.C
src/exporter.C
src/ext_l10n.h
src/FontLoader.C
src/frontends/controllers/biblio.C
src/frontends/controllers/ButtonController.h

View File

@ -756,10 +756,12 @@ void BufferView::Pimpl::selectionRequested()
void BufferView::Pimpl::selectionLost()
{
hideCursor();
toggleSelection();
bv_->getLyXText()->clearSelection();
showCursor();
if (active() && available()) {
hideCursor();
toggleSelection();
bv_->getLyXText()->clearSelection();
showCursor();
}
}

View File

@ -1,3 +1,7 @@
2002-03-01 John Levon <moz@compsoc.man.ac.uk>
* BufferView_pimpl.C: protect selectionLost against text == 0
2002-03-05 Lars Gullik Bjønnes <larsbj@birdstep.com>
* text.C (breakParagraph): fix a setting layout to '0' problem.