diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-03 11:10:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-03 11:10:06 -0500 |
commit | 7141f652594d723995aa4e9e5df850c14902a5ce (patch) | |
tree | f38154ed617c81c10e4054752d94806ee0c257bd /include/sway/view.h | |
parent | b6f4120afc85f0df301a6823b8d8bca08d367fda (diff) | |
parent | 802e7392f89a1e401a3953099ac5d477a461e469 (diff) |
Merge pull request #1491 from acrisci/refactor/dimension-to-size
use "size" instead of "dimensions"
Diffstat (limited to 'include/sway/view.h')
-rw-r--r-- | include/sway/view.h | 2 |
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 { struct { const char *(*get_prop)(struct sway_view *view, enum sway_view_prop prop); - void (*set_dimensions)(struct sway_view *view, + void (*set_size)(struct sway_view *view, int width, int height); } iface; }; |