libsysprof-ui: allow text selection

This commit is contained in:
Christian Hergert
2019-05-18 13:10:23 -07:00
parent bb4bea0261
commit 468b5f8d3c

View File

@ -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));