diff options
author | russ morris <russ@infocyte.com> | 2018-07-10 20:34:51 -0700 |
---|---|---|
committer | russ morris <russ@infocyte.com> | 2018-07-10 20:34:51 -0700 |
commit | c06266e12d2eb14e54da665b966dd1f7618dd123 (patch) | |
tree | 522beea0825ebcf5891e372b28caa2a248201b94 /sway/desktop/render.c | |
parent | b9d8ecc548e7ed6467660aa4a4cd658c702955b9 (diff) |
fix line lengths
Diffstat (limited to 'sway/desktop/render.c')
-rw-r--r-- | sway/desktop/render.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sway/desktop/render.c b/sway/desktop/render.c index 9ebbe9f3..5aec49b5 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -600,7 +600,8 @@ static void render_container_tabbed(struct sway_output *output, struct sway_container_state *pstate = &con->current; double width_gap_adjustment = 2 * pstate->current_gaps; - int tab_width = (pstate->swayc_width - width_gap_adjustment) / pstate->children->length; + int tab_width = + (pstate->swayc_width - width_gap_adjustment) / pstate->children->length; // Render tabs for (int i = 0; i < pstate->children->length; ++i) { @@ -629,7 +630,8 @@ static void render_container_tabbed(struct sway_output *output, // Make last tab use the remaining width of the parent if (i == pstate->children->length - 1) { - tab_width = (pstate->swayc_width - width_gap_adjustment) - tab_width * i; + tab_width = + (pstate->swayc_width - width_gap_adjustment) - tab_width * i; } render_titlebar(output, damage, child, x, cstate->swayc_y, tab_width, |