diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-08-30 16:29:06 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 21:28:35 +0100 |
commit | 0f6ae2ce39fb0ea34f546c86298ca5ef17035285 (patch) | |
tree | f5a667b7c446f29f3cda0041bc0e16461d87f87c | |
parent | fdc85d6816218aeaae57aae2b813fd1deb926411 (diff) | |
download | drakx-0f6ae2ce39fb0ea34f546c86298ca5ef17035285.tar drakx-0f6ae2ce39fb0ea34f546c86298ca5ef17035285.tar.gz drakx-0f6ae2ce39fb0ea34f546c86298ca5ef17035285.tar.bz2 drakx-0f6ae2ce39fb0ea34f546c86298ca5ef17035285.tar.xz drakx-0f6ae2ce39fb0ea34f546c86298ca5ef17035285.zip |
(text_direction_rtl) fix too many parameter
-rw-r--r-- | perl-install/mygtk3.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/mygtk3.pm b/perl-install/mygtk3.pm index a7ab62cc6..6d75baec7 100644 --- a/perl-install/mygtk3.pm +++ b/perl-install/mygtk3.pm @@ -1546,7 +1546,7 @@ sub import_style_ressources() { } sub text_direction_rtl() { - Gtk3::Widget->get_default_direction eq 'rtl'; + Gtk3::Widget::get_default_direction eq 'rtl'; } sub _get_weakness_icon { |