From: simon Date: Sat, 15 Mar 2003 15:56:51 +0000 (+0000) Subject: When a piece of text overflows its column in a tabbed list box, I X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/523fd1da33841edda6b5561133875185eef89c68 When a piece of text overflows its column in a tabbed list box, I think on balance I rather like the natural behaviour of the way I've done it, except that non-zero separation between the columns would be even nicer. Accordingly, here is some. git-svn-id: svn://svn.tartarus.org/sgt/putty@2940 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/unix/gtkdlg.c b/unix/gtkdlg.c index d48c422e..ae2a4bc5 100644 --- a/unix/gtkdlg.c +++ b/unix/gtkdlg.c @@ -341,7 +341,7 @@ void dlg_listbox_addwithindex(union control *ctrl, void *dlg, * are tabs in the thing. */ GtkWidget *listitem = gtk_list_item_new(); - GtkWidget *cols = columns_new(0); + GtkWidget *cols = columns_new(10); gint *percents; int i, ncols;