summaryrefslogtreecommitdiffstats
path: root/globetrotter/ChangeLog
diff options
context:
space:
mode:
authorJani Välimaa <wally@mandriva.org>2009-04-24 15:48:03 +0000
committerJani Välimaa <wally@mandriva.org>2009-04-24 15:48:03 +0000
commit4c4a29fb8ca8188526b9ba2366436971561a836f (patch)
tree48743a563fed28d2dfe95b9d0404e5d390abb3b5 /globetrotter/ChangeLog
parent4320b652ad9470272f62221740c7214adb4aa5a7 (diff)
downloaddrakx-backup-do-not-use-4c4a29fb8ca8188526b9ba2366436971561a836f.tar
-rw-r--r--perl-install/install/NEWS
Diffstat (limited to 'globetrotter/ChangeLog')
0 files changed, 0 insertions, 0 deletions
'>2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 9a2fa08df..e7330ffc2 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,4 @@
+- fix crash when choosing a RTL language (mga#12793)
- Ensure uid/gid extraction works when adding users via summary page
(fixes chown'ing user to root when adding existing user on upgrade mga#12375)
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index f9e6bf71c..41d43d42d 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -71,7 +71,7 @@ sub load_font {
my ($o) = @_;
if (defined($::WizardWindow) && lang::text_direction_rtl()) {
- Gtk3::Widget->set_default_direction('rtl');
+ Gtk3::Widget::set_default_direction('rtl');
my ($x, $y) = $::WizardWindow->get_position;
my ($width) = $::WizardWindow->get_size;
$::WizardWindow->move($::rootwidth - $width - $x, $y);