aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-12-05 11:13:49 -0500
committerGitHub <noreply@github.com>2017-12-05 11:13:49 -0500
commitf2aa33ae0f6cd91b88a3f24b65e3e915c3960931 (patch)
tree7f93aba35ba5c022d3d825bd6720aa4916adba49 /include/sway
parent83b4c0648d75932c693b8636242202ea728035da (diff)
parent8bdf3b1b0275d53cee8538777f12461603b0a751 (diff)
Merge pull request #1500 from acrisci/feature/view-set-position
view set position
Diffstat (limited to 'include/sway')
-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 {
enum sway_view_prop prop);
void (*set_size)(struct sway_view *view,
int width, int height);
+ void (*set_position)(struct sway_view *view,
+ double ox, double oy);
} iface;
};