After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 310386 - text in info side pane should be selectable
text in info side pane should be selectable
Status: RESOLVED FIXED
Product: nautilus
Classification: Core
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Nautilus Maintainers
Nautilus Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-07-14 16:21 UTC by Vincent Noel
Modified: 2005-07-15 13:50 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
make sidebar text selectable - patch by Vincent Noel (867 bytes, patch)
2005-07-15 08:52 UTC, Christian Kirbach
none Details | Review

Description Vincent Noel 2005-07-14 16:21:07 UTC
This little patch fixes this :

Index: src/nautilus-sidebar-title.c
===================================================================
RCS file: /cvs/gnome/nautilus/src/nautilus-sidebar-title.c,v
retrieving revision 1.151
diff -u -r1.151 nautilus-sidebar-title.c
--- src/nautilus-sidebar-title.c        13 Jul 2005 12:23:37 -0000      1.151
+++ src/nautilus-sidebar-title.c        14 Jul 2005 16:20:01 -0000
@@ -400,6 +400,7 @@
                return;
        }
        gtk_label_set_text (label, text);
+       gtk_label_set_selectable (label, TRUE);
        update_title_font (sidebar_title);
 }

@@ -469,6 +470,7 @@
        }
        gtk_label_set_text (GTK_LABEL (sidebar_title->details->more_info_label),
                            info_string->str);
+       gtk_label_set_selectable (GTK_LABEL
(sidebar_title->details->more_info_label), TRUE);

        g_string_free (info_string, TRUE);
 }
Comment 1 Christian Kirbach 2005-07-15 08:49:59 UTC
fair enough. Confirming.
Comment 2 Christian Kirbach 2005-07-15 08:52:09 UTC
Created attachment 49215 [details] [review]
make sidebar text selectable - patch by Vincent Noel
Comment 3 Vincent Noel 2005-07-15 13:50:31 UTC
I committed this.