diff options
-rw-r--r-- | src/intel_display.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/intel_display.c b/src/intel_display.c index 74ce7362..d32224ec 100644 --- a/src/intel_display.c +++ b/src/intel_display.c @@ -1161,7 +1161,11 @@ intel_output_set_property(xf86OutputPtr output, Atom property, } } - return FALSE; + /* We didn't recognise this property, just report success in order + * to allow the set to continue, otherwise we break setting of + * common properties like EDID. + */ + return TRUE; } static Bool |