Hi,

>> There is a separator that appears in 2 places: around the input buffer in
>> the statusbar, and between commands and descriptions in the completion menu.
>> [...]
>
> This should be fixed in 8009f7e in girara's develop branch.


I attach a patch removing the padding for the statusbar, which casued vertical
strips of default-bg color, the same as in the completion menu.

Abdó.

>From 49d299601fd3891df9a5a276374d612a4d390edb Mon Sep 17 00:00:00 2001
From: Abdo Roig-Maranges <abdo.r...@gmail.com>
Date: Sat, 3 May 2014 12:42:54 +0200
Subject: [PATCH] get rid of more padding

---
 statusbar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/statusbar.c b/statusbar.c
index 4744225..7cc7fa9 100644
--- a/statusbar.c
+++ b/statusbar.c
@@ -38,7 +38,7 @@ girara_statusbar_item_add(girara_session_t* session, bool expand, bool fill, boo
 
   /* add it to the list */
   gtk_container_add(GTK_CONTAINER(item->box), GTK_WIDGET(item->text));
-  gtk_box_pack_start(session->gtk.statusbar_entries, GTK_WIDGET(item->box), expand, fill, 2);
+  gtk_box_pack_start(session->gtk.statusbar_entries, GTK_WIDGET(item->box), expand, fill, 0);
   gtk_widget_show_all(GTK_WIDGET(item->box));
 
   girara_list_prepend(session->elements.statusbar_items, item);
-- 
1.9.2

_______________________________________________
zathura mailing list
zathura@lists.pwmt.org
http://lists.pwmt.org/mailman/listinfo/zathura

Reply via email to