captaincurrie <[email protected]> wrote:
> But now that you mention it, the status bar does show up 
> after i press <Tab> to  open the 'completion menu' and close it. 
> Is that intentional?

For this issue, could you try the attached patch and see if it has any
other unwanted side-effects?

Hannes
diff --git a/main.c b/main.c
index d70f88a..4fe337e 100644
--- a/main.c
+++ b/main.c
@@ -995,7 +995,8 @@ complete(const Arg *arg) {
         gtk_box_pack_start(gui->box, GTK_WIDGET(top_border), FALSE, FALSE, 0);
         gtk_container_add(GTK_CONTAINER(table), GTK_WIDGET(_table));
         gtk_box_pack_start(gui->box, GTK_WIDGET(table), FALSE, FALSE, 0);
-        gtk_widget_show_all(GTK_WIDGET(gui->window));
+        gtk_widget_show_all(GTK_WIDGET(table));
+        gtk_widget_show_all(GTK_WIDGET(top_border));
         if (!n)
             return TRUE;
         current = arg->i == DirectionPrev ? n - 1 : 0;
------------------------------------------------------------------------------
Slashdot TV.  Video for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk
_______________________________________________
Vimprobable-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/vimprobable-users

Reply via email to