aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/border.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-11-17 11:04:34 -0500
committerGitHub <noreply@github.com>2018-11-17 11:04:34 -0500
commiteda3bfeed5097c71634332bfe998188b028abf02 (patch)
treea5fb241142cf6815a8fce76eb9b5faf101d69ff9 /sway/commands/border.c
parenta5cdc293dc8ae6759bd627aaf60d35d9eb4efb04 (diff)
parentbe9348d25c9556bdabb83d964a8761f920fc4a11 (diff)
Merge pull request #3142 from RyanDwyer/move-view-properties
Move view {x,y,width,height} into container struct
Diffstat (limited to 'sway/commands/border.c')
-rw-r--r--sway/commands/border.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/border.c b/sway/commands/border.c
index b6eab550..d51741d2 100644
--- a/sway/commands/border.c
+++ b/sway/commands/border.c
@@ -93,7 +93,7 @@ struct cmd_results *cmd_border(int argc, char **argv) {
}
if (container_is_floating(container)) {
- container_set_geometry_from_floating_view(container);
+ container_set_geometry_from_content(container);
}
arrange_container(container);