aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--swaybar/render.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/swaybar/render.c b/swaybar/render.c
index a0200f0d..e17c13a8 100644
--- a/swaybar/render.c
+++ b/swaybar/render.c
@@ -453,10 +453,10 @@ static uint32_t render_status_line_i3bar(cairo_t *cairo,
453 struct i3bar_block *block; 453 struct i3bar_block *block;
454 bool use_short_text = false; 454 bool use_short_text = false;
455 455
456 // TODO: Add margin here?
457 double reserved_width = 456 double reserved_width =
458 predict_workspace_buttons_length(cairo, output) + 457 predict_workspace_buttons_length(cairo, output) +
459 predict_binding_mode_indicator_length(cairo, output); 458 predict_binding_mode_indicator_length(cairo, output) +
459 3 * output->scale; // require a bit of space for margin
460 460
461 double predicted_full_pos = 461 double predicted_full_pos =
462 predict_status_line_pos(cairo, output, *x); 462 predict_status_line_pos(cairo, output, *x);