Merge pull request #911 from RyanDwyer/fix-output-direction

Fix WLR_DIRECTION enums
This commit is contained in:
Drew DeVault 2018-04-26 11:20:25 +02:00 committed by GitHub
commit 25dddc0094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -105,9 +105,9 @@ struct wlr_output *wlr_output_layout_get_center_output(
struct wlr_output_layout *layout);
enum wlr_direction {
WLR_DIRECTION_UP = 0,
WLR_DIRECTION_DOWN = 1,
WLR_DIRECTION_LEFT = 2,
WLR_DIRECTION_UP = 1,
WLR_DIRECTION_DOWN = 2,
WLR_DIRECTION_LEFT = 3,
WLR_DIRECTION_RIGHT = 4,
};