mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-23 08:44:01 +00:00
another patch by Dekel
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@781 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
73b9ca2a4b
commit
bdd630cd5a
@ -1,3 +1,8 @@
|
||||
2000-05-30 Dekel Tsur <dekel@math.tau.ac.il>
|
||||
|
||||
* src/trans_mgr.C (insertVerbatim): Do not use insetquote when the
|
||||
text is Hebrew.
|
||||
|
||||
2000-05-27 Dekel Tsur <dekel@math.tau.ac.il>
|
||||
|
||||
* src/text.C (draw): draw bars under foreign language words.
|
||||
|
@ -290,7 +290,9 @@ void TransManager::insertVerbatim(string const & str, LyXText * text)
|
||||
for (int i = 0; i < l; ++i){
|
||||
if (str[i] == '\"'
|
||||
&& text->GetFont(text->cursor.par,
|
||||
text->cursor.pos).latex() == LyXFont::OFF)
|
||||
text->cursor.pos).latex() == LyXFont::OFF
|
||||
&& text->GetFont(text->cursor.par,
|
||||
text->cursor.pos).language()->lang != "hebrew")
|
||||
current_view->insertCorrectQuote();
|
||||
else
|
||||
text->InsertChar(str[i]);
|
||||
|
Loading…
x
Reference in New Issue
Block a user