- added experimental Right To Left 'mixed mode' support to attempt to make RTL languages with lines having mixed RTL and LTR words display properly (this is a manual hack). To enable, add this to the languages lng file: FONT_RIGHTTOLEFT_MIXED_SUPPORT=true

This commit is contained in:
Mark Vejvoda
2013-11-13 07:56:19 +00:00
parent 0557a1195e
commit 0a0e3f408a
8 changed files with 511 additions and 2 deletions

View File

@@ -261,7 +261,7 @@ void Tokenize(const string& str,vector<string>& tokens,const string& delimiters)
break;
}
tokens.push_back( string( textLine.substr( pos, nextPos - pos ) ) );
pos = nextPos + 1;
pos = nextPos + delimiters.size();
}
}