mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Fix for a problem reported by some users, where cut & paste of math
insets in RTL paragraphs is garbled because of parentheses being reversed. See threads http://permalink.gmane.org/gmane.editors.lyx.devel/83938 and http://thread.gmane.org/gmane.editors.lyx.devel/83345/focus=83637 for details. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18388 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8283c6f5b2
commit
708ebc04f6
@ -2394,7 +2394,7 @@ docstring const Paragraph::asString(Buffer const & buffer,
|
||||
os << params().labelString() << ' ';
|
||||
|
||||
for (pos_type i = beg; i < end; ++i) {
|
||||
value_type const c = getUChar(buffer.params(), i);
|
||||
value_type const c = getChar(i);
|
||||
if (isPrintable(c))
|
||||
os.put(c);
|
||||
else if (c == META_INSET)
|
||||
|
Loading…
Reference in New Issue
Block a user