diff options
author | Andy Hertzfeld <andy@src.gnome.org> | 2000-04-10 22:16:18 +0000 |
---|---|---|
committer | Andy Hertzfeld <andy@src.gnome.org> | 2000-04-10 22:16:18 +0000 |
commit | 82c9663d5d59943d600ff4c1d406928f9a40bad9 (patch) | |
tree | 08e6edbab814b3fbc4fc8c8ff62b24545157f8ee /src/nautilus-sidebar-title.c | |
parent | 6e865e79dec218521814ceafe6fe140ca8eb53ff (diff) | |
download | nautilus-82c9663d5d59943d600ff4c1d406928f9a40bad9.tar.gz |
fixed bug where multi-line titles in the index panel has a large vertical
fixed bug where multi-line titles in the index panel has a large
vertical gap. Fixed by breaking out of loop when we find the
split point.
Diffstat (limited to 'src/nautilus-sidebar-title.c')
-rw-r--r-- | src/nautilus-sidebar-title.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nautilus-sidebar-title.c b/src/nautilus-sidebar-title.c index 3c44bff5b..7b4069a24 100644 --- a/src/nautilus-sidebar-title.c +++ b/src/nautilus-sidebar-title.c @@ -291,7 +291,7 @@ nautilus_index_title_update_label (NautilusIndexTitle *index_title) if (split_offset != 0) { char *buffer = g_malloc(strlen(displayed_text) + 2); - /* build the new string, with a CR inserted, also remembering them separately for measuring */ + /* build the new string, with a blank inserted, also remembering them separately for measuring */ memcpy(buffer, displayed_text, split_offset); buffer[split_offset] = '\n'; strcpy(&buffer[split_offset + 1], &displayed_text[split_offset]); @@ -300,6 +300,7 @@ nautilus_index_title_update_label (NautilusIndexTitle *index_title) g_free(displayed_text); displayed_text = buffer; + break; } } } @@ -309,7 +310,6 @@ nautilus_index_title_update_label (NautilusIndexTitle *index_title) } else { index_title->details->title = GTK_WIDGET (gtk_label_new (displayed_text)); gtk_label_set_line_wrap (GTK_LABEL (index_title->details->title), TRUE); - gtk_label_set_justify(GTK_LABEL(index_title->details->title), GTK_JUSTIFY_CENTER); gtk_widget_show (index_title->details->title); gtk_box_pack_start (GTK_BOX (index_title), index_title->details->title, 0, 0, 0); gtk_box_reorder_child (GTK_BOX (index_title), index_title->details->title, 1); |