Don't forget to add the property we configure to the properties list.

This commit is contained in:
Eric Anholt 2007-01-16 12:59:34 -08:00 committed by Keith Packard
parent 07e5c928ab
commit 11307c4b88

View File

@ -298,6 +298,12 @@ RRConfigureOutputProperty (RROutputPtr output, Atom property,
if (prop->valid_values)
xfree (prop->valid_values);
prop->valid_values = new_values;
if (add) {
prop->next = output->properties;
output->properties = prop;
}
return Success;
}