From 468b5f8d3c20ea00a7d4489e47a84dfc30a7d72e Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Sat, 18 May 2019 13:10:23 -0700 Subject: [PATCH] libsysprof-ui: allow text selection --- src/libsysprof-ui/sysprof-capture-view.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libsysprof-ui/sysprof-capture-view.c b/src/libsysprof-ui/sysprof-capture-view.c index 1066e5b7..9fcce3e2 100644 --- a/src/libsysprof-ui/sysprof-capture-view.c +++ b/src/libsysprof-ui/sysprof-capture-view.c @@ -196,6 +196,7 @@ add_marks_to_details (SysprofCaptureView *self) NULL), g_object_new (GTK_TYPE_LABEL, "label", minstr, + "selectable", TRUE, "xalign", 0.0f, "visible", TRUE, NULL)); @@ -209,6 +210,7 @@ add_marks_to_details (SysprofCaptureView *self) NULL), g_object_new (GTK_TYPE_LABEL, "label", maxstr, + "selectable", TRUE, "xalign", 0.0f, "visible", TRUE, NULL)); @@ -222,6 +224,7 @@ add_marks_to_details (SysprofCaptureView *self) NULL), g_object_new (GTK_TYPE_LABEL, "label", avgstr, + "selectable", TRUE, "xalign", 0.0f, "visible", TRUE, NULL));