24 lines
965 B
Diff
24 lines
965 B
Diff
commit fa19e84714aa84a2f2e817e363d6440349d0b619
|
|
Author: Matthias Hopf <mhopf@suse.de>
|
|
Date: Tue Nov 20 16:54:50 2007 +0100
|
|
|
|
Fix initial placement of LeftOf and Above.
|
|
|
|
diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c
|
|
index 760a498..5a1ed8c 100644
|
|
--- a/hw/xfree86/modes/xf86Crtc.c
|
|
+++ b/hw/xfree86/modes/xf86Crtc.c
|
|
@@ -1094,10 +1094,10 @@ xf86InitialOutputPositions (ScrnInfoPtr scrn, DisplayModePtr *modes)
|
|
output->initial_x += xf86ModeWidth (modes[or], relative->initial_rotation);
|
|
break;
|
|
case OPTION_ABOVE:
|
|
- output->initial_y -= xf86ModeHeight (modes[or], relative->initial_rotation);
|
|
+ output->initial_y -= xf86ModeHeight (modes[o], relative->initial_rotation);
|
|
break;
|
|
case OPTION_LEFT_OF:
|
|
- output->initial_x -= xf86ModeWidth (modes[or], relative->initial_rotation);
|
|
+ output->initial_x -= xf86ModeWidth (modes[o], relative->initial_rotation);
|
|
break;
|
|
default:
|
|
break;
|