fixing horizontal-reverse profile which was doing the same thing as vertical-reverse
This commit is contained in:
parent
237f339f13
commit
1d896af332
|
@ -1054,7 +1054,7 @@ def generate_virtual_profile(configuration, modes, profile_name):
|
||||||
configuration[output].options["off"] = None
|
configuration[output].options["off"] = None
|
||||||
elif profile_name in ("horizontal", "vertical", "horizontal-reverse", "vertical-reverse"):
|
elif profile_name in ("horizontal", "vertical", "horizontal-reverse", "vertical-reverse"):
|
||||||
shift = 0
|
shift = 0
|
||||||
if profile_name == "horizontal":
|
if profile_name.startswith("horizontal"):
|
||||||
shift_index = "width"
|
shift_index = "width"
|
||||||
pos_specifier = "%sx0"
|
pos_specifier = "%sx0"
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue