mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
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:
parent
c49a1f8c07
commit
1846e91782
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user