wlr_xdg_shell: (style) add break to final switch case

This commit is contained in:
Dominique Martinet 2018-02-15 07:16:28 +01:00
parent db9c2c11f6
commit 6ae96c4832
1 changed files with 4 additions and 0 deletions

View File

@ -420,6 +420,7 @@ static struct wlr_box xdg_positioner_get_geometry(
default:
geometry.y +=
positioner->anchor_rect.y + positioner->anchor_rect.height / 2;
break;
}
switch (positioner->anchor) {
@ -436,6 +437,7 @@ static struct wlr_box xdg_positioner_get_geometry(
default:
geometry.x +=
positioner->anchor_rect.x + positioner->anchor_rect.width / 2;
break;
}
switch (positioner->gravity) {
@ -451,6 +453,7 @@ static struct wlr_box xdg_positioner_get_geometry(
break;
default:
geometry.y -= geometry.height / 2;
break;
}
switch (positioner->gravity) {
@ -466,6 +469,7 @@ static struct wlr_box xdg_positioner_get_geometry(
break;
default:
geometry.x -= geometry.width / 2;
break;
}
if (positioner->constraint_adjustment ==