summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-19 22:54:50 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-21 20:16:56 +1000
commitc08f9bf257c38c92a75988d89fba2d4de6bb2aea (patch)
tree76ea44c5548301ff4892c44838b783eeeb569c62 /include
parentMerge pull request #2011 from RyanDwyer/fix-hide-edge-border-bottom (diff)
downloadsway-c08f9bf257c38c92a75988d89fba2d4de6bb2aea.tar.gz
sway-c08f9bf257c38c92a75988d89fba2d4de6bb2aea.tar.zst
sway-c08f9bf257c38c92a75988d89fba2d4de6bb2aea.zip
Implement tabbed layout
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index e7e9d944..598a4f3d 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -162,7 +162,7 @@ struct sway_container *container_parent(struct sway_container *container,
162 * is a view and the view contains a surface at those coordinates. 162 * is a view and the view contains a surface at those coordinates.
163 */ 163 */
164struct sway_container *container_at(struct sway_container *container, 164struct sway_container *container_at(struct sway_container *container,
165 double lx, double ly, struct wlr_surface **surface, 165 double ox, double oy, struct wlr_surface **surface,
166 double *sx, double *sy); 166 double *sx, double *sy);
167 167
168/** 168/**