Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/renderer/atlas/AtlasEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,12 @@ try
{
for (const auto& ch : cluster.GetText())
{
// Skip Unicode FSI (U+2068) and PDI (U+2069).
// TODO: #538 - Remove this once we have proper support for bidirectional text.
if (ch == 0x2068u || ch == 0x2069u)
{
continue;
}
_api.bufferLine.emplace_back(ch);
_api.bufferLineColumn.emplace_back(columnEnd);
}
Expand Down
Loading