diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-28 18:10:55 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-05 14:16:08 +0100 |
commit | e643c38f5de6328ed55edaaf4a28006f8153de63 (patch) | |
tree | ae39cd9fd2f87e3bff1c4c0c8727092f1ac47c69 | |
parent | 2eed991845b2cf5bdc215ad826fd7049093436ba (diff) | |
download | rpmdrake-e643c38f5de6328ed55edaaf4a28006f8153de63.tar rpmdrake-e643c38f5de6328ed55edaaf4a28006f8153de63.tar.gz rpmdrake-e643c38f5de6328ed55edaaf4a28006f8153de63.tar.bz2 rpmdrake-e643c38f5de6328ed55edaaf4a28006f8153de63.tar.xz rpmdrake-e643c38f5de6328ed55edaaf4a28006f8153de63.zip |
fix guessing RTL or LTR
lang is no more loaded by default.
rather than load it, just use mygtk3...
-rw-r--r-- | Rpmdrake/gui.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index 793b662e..b4bb39ba 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -188,7 +188,7 @@ sub get_main_text { ugtk3::markup_to_TextView_format( # force align "name - summary" to the right with RTL languages (#33603): - if_(lang::text_direction_rtl(), "\x{200f}") . + if_(mygtk3::text_direction_rtl(), "\x{200f}") . join("\n", format_header(join(' - ', $name, $summary)) . # workaround gtk+ bug where GtkTextView wronly limit embedded widget size to bigger line's width (#25533): |