mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-01 13:40:39 +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
|
@bMartin Vermeer
|
||||||
@iE-mail: martin.vermeer@hut.fi
|
@iE-mail: martin.vermeer@hut.fi
|
||||||
svjour/svjog, egs and llncs document classes
|
svjour/svjog, egs and llncs document classes
|
||||||
|
Lot of bug hunting (and fixing!)
|
||||||
@bJuergen Vigna
|
@bJuergen Vigna
|
||||||
@iE-mail: jug@sad.it
|
@iE-mail: jug@sad.it
|
||||||
complete rewrite of the tabular, text inset
|
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>
|
2002-03-05 Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
|
||||||
|
|
||||||
* layouts/db_stdclass.inc:
|
* layouts/db_stdclass.inc:
|
||||||
|
@ -9,7 +9,6 @@ src/converter.C
|
|||||||
src/CutAndPaste.C
|
src/CutAndPaste.C
|
||||||
src/debug.C
|
src/debug.C
|
||||||
src/exporter.C
|
src/exporter.C
|
||||||
src/ext_l10n.h
|
|
||||||
src/FontLoader.C
|
src/FontLoader.C
|
||||||
src/frontends/controllers/biblio.C
|
src/frontends/controllers/biblio.C
|
||||||
src/frontends/controllers/ButtonController.h
|
src/frontends/controllers/ButtonController.h
|
||||||
|
@ -756,11 +756,13 @@ void BufferView::Pimpl::selectionRequested()
|
|||||||
|
|
||||||
void BufferView::Pimpl::selectionLost()
|
void BufferView::Pimpl::selectionLost()
|
||||||
{
|
{
|
||||||
|
if (active() && available()) {
|
||||||
hideCursor();
|
hideCursor();
|
||||||
toggleSelection();
|
toggleSelection();
|
||||||
bv_->getLyXText()->clearSelection();
|
bv_->getLyXText()->clearSelection();
|
||||||
showCursor();
|
showCursor();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void BufferView::Pimpl::enterView()
|
void BufferView::Pimpl::enterView()
|
||||||
|
@ -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>
|
2002-03-05 Lars Gullik Bjønnes <larsbj@birdstep.com>
|
||||||
|
|
||||||
* text.C (breakParagraph): fix a setting layout to '0' problem.
|
* text.C (breakParagraph): fix a setting layout to '0' problem.
|
||||||
|
Loading…
Reference in New Issue
Block a user