aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-01-18 00:48:36 +0800
committerMilan Crha <mcrha@redhat.com>2014-01-18 00:48:36 +0800
commit2432d33c61541ffde7c0f2aecab3ba00def910e0 (patch)
tree26a0fffd950e91f73637446303216117e9821277 /e-util
parentd64150ab966cfd9d661aa06999573fe42fe2671e (diff)
downloadgsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar.gz
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar.bz2
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar.lz
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar.xz
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.tar.zst
gsoc2013-evolution-2432d33c61541ffde7c0f2aecab3ba00def910e0.zip
[evolution-source-viewer] Make identity label selectable
Easier to copy&paste than write the generate UID letter by letter.
Diffstat (limited to 'e-util')
-rw-r--r--e-util/evolution-source-viewer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/evolution-source-viewer.c b/e-util/evolution-source-viewer.c
index 44deb76331..0b188d7664 100644
--- a/e-util/evolution-source-viewer.c
+++ b/e-util/evolution-source-viewer.c
@@ -792,6 +792,7 @@ source_viewer_constructed (GObject *object)
widget = gtk_label_new (NULL);
gtk_label_set_attributes (GTK_LABEL (widget), bold);
gtk_label_set_ellipsize (GTK_LABEL (widget), PANGO_ELLIPSIZE_END);
+ gtk_label_set_selectable (GTK_LABEL (widget), TRUE);
gtk_misc_set_alignment (GTK_MISC (widget), 0.0, 0.5);
gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0);
viewer->viewing_label = widget; /* do not reference */