diff options
Diffstat (limited to 'perl-install/lang.pm')
-rw-r--r-- | perl-install/lang.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm index 5b35e0cf7..e481c1a9b 100644 --- a/perl-install/lang.pm +++ b/perl-install/lang.pm @@ -866,6 +866,11 @@ sub write { Language => get_kde_lang($locale), )); + my %qt_xim = (zh => 'On The Spot', ko => 'On The Spot', ja => 'Over The Spot'); + if ($user_only && (my $qt_xim = $qt_xim{substr($locale->{lang}, 0, 2)})) { + update_gnomekderc("$ENV{HOME}/.qt/qtrc", General => (XIMInputStyle => $qt_xim)); + } + if ($prev_kde_charset ne charset2kde_charset($charset)) { update_gnomekderc("$confdir/kdeglobals", WM => ( activeFont => charset2kde_font($charset,0), |