diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-06-03 00:01:20 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-06-03 00:01:20 +0100 |
commit | 62c0617d791c68132328e77a683897a5a42a4044 (patch) | |
tree | ab47549816070e4f89727590a1ec464c1cd4cc74 /grid-view.c | |
parent | 3d5decb305a960edb0ca3d91ceec3929dcbc8c3e (diff) | |
parent | 4694e9a2b62c8df0862d80237e42978d65fc824e (diff) | |
download | rtmux-62c0617d791c68132328e77a683897a5a42a4044.tar.gz rtmux-62c0617d791c68132328e77a683897a5a42a4044.tar.bz2 rtmux-62c0617d791c68132328e77a683897a5a42a4044.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'grid-view.c')
-rw-r--r-- | grid-view.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/grid-view.c b/grid-view.c index a4bd5ba2..f230d3c8 100644 --- a/grid-view.c +++ b/grid-view.c @@ -45,6 +45,13 @@ grid_view_set_cell(struct grid *gd, u_int px, u_int py, grid_set_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py), gc); } +/* Set padding. */ +void +grid_view_set_padding(struct grid *gd, u_int px, u_int py) +{ + grid_set_padding(gd, grid_view_x(gd, px), grid_view_y(gd, py)); +} + /* Set cells. */ void grid_view_set_cells(struct grid *gd, u_int px, u_int py, |