aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-03 11:10:06 -0500
committerLibravatar GitHub <noreply@github.com>2017-12-03 11:10:06 -0500
commit7141f652594d723995aa4e9e5df850c14902a5ce (patch)
treef38154ed617c81c10e4054752d94806ee0c257bd /include
parentMerge pull request #1489 from acrisci/feature/basic-get-tree (diff)
parentuse "size" instead of "dimensions" (diff)
downloadsway-7141f652594d723995aa4e9e5df850c14902a5ce.tar.gz
sway-7141f652594d723995aa4e9e5df850c14902a5ce.tar.zst
sway-7141f652594d723995aa4e9e5df850c14902a5ce.zip
Merge pull request #1491 from acrisci/refactor/dimension-to-size
use "size" instead of "dimensions"
Diffstat (limited to 'include')
-rw-r--r--include/sway/view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/view.h b/include/sway/view.h
index 2707ca78..cf2e6f66 100644
--- a/include/sway/view.h
+++ b/include/sway/view.h
@@ -55,7 +55,7 @@ struct sway_view {
55 struct { 55 struct {
56 const char *(*get_prop)(struct sway_view *view, 56 const char *(*get_prop)(struct sway_view *view,
57 enum sway_view_prop prop); 57 enum sway_view_prop prop);
58 void (*set_dimensions)(struct sway_view *view, 58 void (*set_size)(struct sway_view *view,
59 int width, int height); 59 int width, int height);
60 } iface; 60 } iface;
61}; 61};