diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-23 11:50:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-23 11:50:21 +0000 |
commit | 8795d55cd84ac2b1d94af7d2cce1efc7ef339e25 (patch) | |
tree | 0efed0a45f71536e4d4726ca23c1213085873353 /perl-install/Xconfig | |
parent | 677f63e327af8a318f8094f0aa017138f69bf889 (diff) | |
download | drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.gz drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.bz2 drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.xz drakx-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.zip |
fix "screen1 RightOf screen2", it must be "screen2 RightOf screen1"
Diffstat (limited to 'perl-install/Xconfig')
-rw-r--r-- | perl-install/Xconfig/xfree4.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/xfree4.pm b/perl-install/Xconfig/xfree4.pm index 8ffa411e0..3045bd697 100644 --- a/perl-install/Xconfig/xfree4.pm +++ b/perl-install/Xconfig/xfree4.pm @@ -116,7 +116,7 @@ sub new_screen_sections { get_ServerLayout($raw_X)->{Screen} = [ { val => qq("screen1") }, #-) - map { { val => sprintf('"screen%d" RightOf "screen%d"', $_-1, $_) } } (2 .. $nb_new) + map { { val => sprintf('"screen%d" RightOf "screen%d"', $_, $_ - 1) } } (2 .. $nb_new) ]; @l; |