GNOME Bugzilla – Bug 422285
when I click beween name - size the name list should resize to the longest name it has
Last modified: 2007-04-02 08:24:36 UTC
Please describe the problem: What I really hate about the current way of working is that you have manually guess how long a file name is. Steps to reproduce: 1. 2. 3. Actual results: Expected results: Does this happen every time? Other information:
this would be a serious improvement Index: fm-list-view.c =================================================================== --- fm-list-view.c (revision 12839) +++ fm-list-view.c (working copy) @@ -1384,7 +1384,7 @@ cell = gtk_cell_renderer_text_new (); g_object_set (cell, "ellipsize", PANGO_ELLIPSIZE_END, - "width-chars", 32, + "width-chars", 64, NULL); view->details->file_name_cell = (GtkCellRendererText *)cell; g_signal_connect (cell, "edited", G_CALLBACK (cell_renderer_edited), view);
*** This bug has been marked as a duplicate of 410361 ***