Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Right To Left Bracket display wrong

When the Label text value ends with end bracket. The result in Right to Left is wrong like example.

Text: ABC (123)
Result: (ABC (123
Expected Result: ABC (123)

Is there any solution to fix it?

like image 481
James063 Avatar asked Mar 18 '13 07:03

James063


1 Answers

You have to use the Unicode Right-to-left mark, (U+200F) in your text. Conversely, use the Left-to-right mark (`U+200E) if you know you need LTR rendering.

like image 175
Ria Avatar answered Oct 07 '22 13:10

Ria