diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-06-04 17:16:17 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-06-04 17:16:17 -0400 |
commit | bcb660cb1d3a8795042ef1ae63f0d8a7daec1cc3 (patch) | |
tree | 8fd386c2e62fbb6bc4693acbd2cd6481c4b21ab9 | |
parent | f11ef263797541898dd359789a4a695a4a7225ce (diff) |
add missing anchor case in positioner invert-x
-rw-r--r-- | types/xdg_shell/wlr_xdg_positioner.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/types/xdg_shell/wlr_xdg_positioner.c b/types/xdg_shell/wlr_xdg_positioner.c index 0213c572..6f902f92 100644 --- a/types/xdg_shell/wlr_xdg_positioner.c +++ b/types/xdg_shell/wlr_xdg_positioner.c @@ -256,6 +256,8 @@ static enum xdg_positioner_anchor positioner_anchor_invert_x( return XDG_POSITIONER_ANCHOR_LEFT; case XDG_POSITIONER_ANCHOR_TOP_LEFT: return XDG_POSITIONER_ANCHOR_TOP_RIGHT; + case XDG_POSITIONER_ANCHOR_TOP_RIGHT: + return XDG_POSITIONER_ANCHOR_TOP_LEFT; case XDG_POSITIONER_ANCHOR_BOTTOM_LEFT: return XDG_POSITIONER_ANCHOR_BOTTOM_RIGHT; case XDG_POSITIONER_ANCHOR_BOTTOM_RIGHT: |