From ad5ac612915ccd73cd76992e5a9bbd641ab94382 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Tue, 17 Feb 2015 11:07:24 +0100 Subject: [PATCH] Fix "transform" parsing See related commit 376005b --- autorandr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorandr.py b/autorandr.py index 5ae864b..d7095f2 100755 --- a/autorandr.py +++ b/autorandr.py @@ -95,7 +95,7 @@ class XrandrOutput(object): ).* (?:\s*(?: # Properties of the output Gamma: (?P[0-9\.: ]+) | # Gamma value - Transform: (?P(?:[\-0-9\.]+\s+){3}) | # Transformation matrix + Transform: (?P(?:[\-0-9\. ]+\s+){3}) | # Transformation matrix EDID: (?P\s*?(?:\\n\\t\\t[0-9a-f]+)+) | # EDID of the output (?![0-9])[^:\s][^:\n]+:.*(?:\s\\t[\\t ].+)* # Other properties ))+ -- 2.39.2