summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-08-23 11:50:21 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-08-23 11:50:21 +0000
commit8795d55cd84ac2b1d94af7d2cce1efc7ef339e25 (patch)
tree0efed0a45f71536e4d4726ca23c1213085873353
parent677f63e327af8a318f8094f0aa017138f69bf889 (diff)
downloaddrakx-backup-do-not-use-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar
drakx-backup-do-not-use-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.gz
drakx-backup-do-not-use-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.bz2
drakx-backup-do-not-use-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.tar.xz
drakx-backup-do-not-use-8795d55cd84ac2b1d94af7d2cce1efc7ef339e25.zip
fix "screen1 RightOf screen2", it must be "screen2 RightOf screen1"
-rw-r--r--perl-install/Xconfig/xfree4.pm2
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;