From 9cf6b152ce83a7a3ee9ef9aec83ff1b66a8c8ecb Mon Sep 17 00:00:00 2001 From: Stephen Watson Date: Tue, 13 Sep 2005 17:07:09 +0000 Subject: [PATCH] r4164: Allow some labels used to display file names to wrap over more than one line, improving display of very long file names (Stephen Watson). Show progress bar from start when an action is on more than one item (Stephen Watson). --- ROX-Filer/Help/Changes | 7 +++++++ ROX-Filer/src/abox.c | 1 + 2 files changed, 8 insertions(+) diff --git a/ROX-Filer/Help/Changes b/ROX-Filer/Help/Changes index 492a70b8..4310d317 100644 --- a/ROX-Filer/Help/Changes +++ b/ROX-Filer/Help/Changes @@ -2,6 +2,13 @@ A RISC OS-like filer for X by Thomas Leonard +13-Sep-2005 +~~~~~~~~~~~ +Allow some labels used to display file names to wrap over more than one line, +improving display of very long file names (Stephen Watson). +Show progress bar from start when an action is on more than one item +(Stephen Watson). + 08-Sep-2005 ~~~~~~~~~~~ Bugfix: The refresh feature was accidentally broken during the upgrade to the diff --git a/ROX-Filer/src/abox.c b/ROX-Filer/src/abox.c index a1397584..4beb9e29 100644 --- a/ROX-Filer/src/abox.c +++ b/ROX-Filer/src/abox.c @@ -187,6 +187,7 @@ static void abox_init(GTypeInstance *object, gpointer gclass) 1, 2, i, i + 1, GTK_SHRINK, GTK_SHRINK, 4, 1); abox->cmp_name[i] = gtk_label_new(""); + gtk_label_set_line_wrap(GTK_LABEL(abox->cmp_name[i]), TRUE); gtk_misc_set_alignment(GTK_MISC(abox->cmp_name[i]), 0., 0.5); gtk_table_attach(GTK_TABLE(abox->cmp_area), abox->cmp_name[i], -- 2.11.4.GIT