summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/arabic/arabic-fc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/arabic/arabic-fc.c b/modules/arabic/arabic-fc.c
index 5765982b..023f6294 100644
--- a/modules/arabic/arabic-fc.c
+++ b/modules/arabic/arabic-fc.c
@@ -96,6 +96,7 @@ arabic_engine_shape (PangoEngineShape *engine,
const char *p;
int cluster = 0;
gboolean rtl = analysis->level % 2 != 0;
+ gboolean reverse;
int i;
g_return_if_fail (font != NULL);
@@ -115,7 +116,8 @@ arabic_engine_shape (PangoEngineShape *engine,
wcs = g_utf8_to_ucs4_fast (text, length, &n_chars);
properties = g_new0 (gulong, n_chars);
- Arabic_Assign_Properties (wcs, properties, n_chars, !rtl);
+ reverse = !rtl ^ (analysis->gravity == PANGO_GRAVITY_NORTH || analysis->gravity == PANGO_GRAVITY_WEST);
+ Arabic_Assign_Properties (wcs, properties, n_chars, reverse);
g_free (wcs);