mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 19:25:39 +00:00
Use normal cursor shape in ERT insets.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2506 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
48503551b1
commit
60c447c775
@ -411,16 +411,19 @@ void BufferView::showLockedInsetCursor(int x, int y, int asc, int desc)
|
||||
{
|
||||
if (available() && theLockingInset()) {
|
||||
LyXCursor cursor = text->cursor;
|
||||
Inset * locking_inset = theLockingInset()->getLockingInset();
|
||||
|
||||
if ((cursor.pos() - 1 >= 0) &&
|
||||
(cursor.par()->getChar(cursor.pos() - 1) ==
|
||||
Paragraph::META_INSET) &&
|
||||
(cursor.par()->getInset(cursor.pos() - 1) ==
|
||||
theLockingInset()->getLockingInset()))
|
||||
locking_inset))
|
||||
text->setCursor(this, cursor,
|
||||
cursor.par(), cursor.pos() - 1);
|
||||
LyXScreen::Cursor_Shape shape = LyXScreen::BAR_SHAPE;
|
||||
LyXText * txt = getLyXText();
|
||||
if (theLockingInset()->getLockingInset()->isTextInset() &&
|
||||
if (locking_inset->isTextInset() &&
|
||||
locking_inset->lyxCode() != Inset::ERT_CODE &&
|
||||
(txt->real_current_font.language() !=
|
||||
buffer()->params.language
|
||||
|| txt->real_current_font.isVisibleRightToLeft()
|
||||
|
@ -1,3 +1,8 @@
|
||||
2001-08-13 Dekel Tsur <dekelts@tau.ac.il>
|
||||
|
||||
* BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
|
||||
ERT insets.
|
||||
|
||||
2001-08-13 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* text.C (fill): return 0 instead of 20 as this seems to be the more
|
||||
|
Loading…
Reference in New Issue
Block a user