mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
Allow 0 degree transform (normal transform).
This commit is contained in:
parent
2f7247e08a
commit
9032be4f08
|
@ -12,7 +12,8 @@ struct cmd_results *output_cmd_transform(int argc, char **argv) {
|
|||
return cmd_results_new(CMD_INVALID, "Missing transform argument.");
|
||||
}
|
||||
enum wl_output_transform transform;
|
||||
if (strcmp(*argv, "normal") == 0) {
|
||||
if (strcmp(*argv, "normal") == 0 ||
|
||||
strcmp(*argv, "0") == 0) {
|
||||
transform = WL_OUTPUT_TRANSFORM_NORMAL;
|
||||
} else if (strcmp(*argv, "90") == 0) {
|
||||
transform = WL_OUTPUT_TRANSFORM_90;
|
||||
|
|
Loading…
Reference in a new issue