From 3aa1922aa6503e5b029c260c713ef6fda2977ddf Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Thu, 13 Oct 2016 08:53:22 +0200 Subject: [PATCH] Remove padding from input bar: Fix #479 --- source/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/view.c b/source/view.c index 954f103c..43080043 100644 --- a/source/view.c +++ b/source/view.c @@ -1389,7 +1389,7 @@ RofiViewState *rofi_view_create ( Mode *sw, rofi_view_calculate_window_and_element_width ( state ); state->input_bar = box_create ( BOX_HORIZONTAL, 0, 0, state->width - state->border, line_height ); - box_set_padding ( state->input_bar, config.line_margin ); + //box_set_padding ( state->input_bar, config.line_margin ); state->input_bar_separator = separator_create ( S_HORIZONTAL, 2 ); if ( ( config.location == WL_EAST_SOUTH || config.location == WL_SOUTH || config.location == WL_SOUTH_WEST ) ) {