fixing horizontal-reverse profile which was doing the same thing as vertical-reverse

This commit is contained in:
Magks 2022-12-24 14:15:30 -08:00 committed by Phillip Berndt
parent 237f339f13
commit 1d896af332
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ def generate_virtual_profile(configuration, modes, profile_name):
configuration[output].options["off"] = None
elif profile_name in ("horizontal", "vertical", "horizontal-reverse", "vertical-reverse"):
shift = 0
if profile_name == "horizontal":
if profile_name.startswith("horizontal"):
shift_index = "width"
pos_specifier = "%sx0"
else: