aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--types/xdg_shell/wlr_xdg_popup.c4
-rw-r--r--types/xdg_shell_v6/wlr_xdg_popup_v6.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/types/xdg_shell/wlr_xdg_popup.c b/types/xdg_shell/wlr_xdg_popup.c
index fd608a95..3239ea19 100644
--- a/types/xdg_shell/wlr_xdg_popup.c
+++ b/types/xdg_shell/wlr_xdg_popup.c
@@ -454,10 +454,10 @@ static bool xdg_popup_unconstrain_flip(struct wlr_xdg_popup *popup,
}
// revert the positioner back if it didn't fix it and go to the next part
- if (flip_x) {
+ if (offset_x && flip_x) {
wlr_positioner_invert_x(&popup->positioner);
}
- if (flip_y) {
+ if (offset_y && flip_y) {
wlr_positioner_invert_y(&popup->positioner);
}
diff --git a/types/xdg_shell_v6/wlr_xdg_popup_v6.c b/types/xdg_shell_v6/wlr_xdg_popup_v6.c
index 7d3e06fc..54c583bd 100644
--- a/types/xdg_shell_v6/wlr_xdg_popup_v6.c
+++ b/types/xdg_shell_v6/wlr_xdg_popup_v6.c
@@ -474,10 +474,10 @@ static bool xdg_popup_v6_unconstrain_flip(struct wlr_xdg_popup_v6 *popup,
}
// revert the positioner back if it didn't fix it and go to the next part
- if (flip_x) {
+ if (offset_x && flip_x) {
wlr_positioner_v6_invert_x(&popup->positioner);
}
- if (flip_y) {
+ if (offset_y && flip_y) {
wlr_positioner_v6_invert_y(&popup->positioner);
}