summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-05 11:02:31 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-05 11:02:31 -0500
commit8bdf3b1b0275d53cee8538777f12461603b0a751 (patch)
tree7f93aba35ba5c022d3d825bd6720aa4916adba49 /include
parentMerge pull request #1497 from emersion/cmd-exec (diff)
downloadsway-8bdf3b1b0275d53cee8538777f12461603b0a751.tar.gz
sway-8bdf3b1b0275d53cee8538777f12461603b0a751.tar.zst
sway-8bdf3b1b0275d53cee8538777f12461603b0a751.zip
view set position
Diffstat (limited to 'include')
-rw-r--r--include/sway/view.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/view.h b/include/sway/view.h
index 83ac8285..18e964f3 100644
--- a/include/sway/view.h
+++ b/include/sway/view.h
@@ -87,6 +87,8 @@ struct sway_view {
87 enum sway_view_prop prop); 87 enum sway_view_prop prop);
88 void (*set_size)(struct sway_view *view, 88 void (*set_size)(struct sway_view *view,
89 int width, int height); 89 int width, int height);
90 void (*set_position)(struct sway_view *view,
91 double ox, double oy);
90 } iface; 92 } iface;
91}; 93};
92 94