plug-ins: Make PSD compatibility messages selectable
For diagnosis purposes, it is useful for people to be able to copy and paste the compatibility warning text that GIMP shows when loading a PSD with unsupported features. This patch makes that label selectable, which allows for copying.
This commit is contained in:
parent
a64c46b830
commit
b6d6ccecc7
1 changed files with 1 additions and 0 deletions
|
|
@ -3940,6 +3940,7 @@ load_dialog (const gchar *title,
|
|||
gtk_label_set_markup (GTK_LABEL (label), message);
|
||||
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
|
||||
gtk_label_set_selectable (GTK_LABEL (label), TRUE);
|
||||
gtk_label_set_yalign (GTK_LABEL (label), 0.0);
|
||||
gtk_container_add (GTK_CONTAINER (scrolled_window), label);
|
||||
gtk_widget_show (label);
|
||||
|
|
|
|||
Loading…
Reference in a new issue