mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-25 21:10:05 +01:00
Make pending property changes trigger mode setting.
The DDX code was ignoring pending properties for computing when mode setting was required. This meant that configurations differing only in property values would not cause the mode to be set.
This commit is contained in:
parent
aed6569309
commit
9fc36a391c
1 changed files with 4 additions and 0 deletions
|
|
@ -750,6 +750,10 @@ xf86RandR12CrtcSet (ScreenPtr pScreen,
|
|||
output->crtc = new_crtc;
|
||||
}
|
||||
}
|
||||
for (ro = 0; ro < num_randr_outputs; ro++)
|
||||
if (randr_outputs[ro]->pendingProperties)
|
||||
changed = TRUE;
|
||||
|
||||
/* XXX need device-independent mode setting code through an API */
|
||||
if (changed)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue