Blame 0001-gui-wizard-gtk-Wrap-event-log-messages.patch

8c80901
From 1f14c9fa96937e589354589665eb8c64d6d16d80 Mon Sep 17 00:00:00 2001
8c80901
From: Ernestas Kulik <ekulik@redhat.com>
8c80901
Date: Fri, 20 Mar 2020 18:04:19 +0100
8c80901
Subject: [PATCH] gui-wizard-gtk: Wrap event log messages
8c80901
8c80901
Currently, large logs received by abrt-retrace-client may cause
8c80901
X/Wayland protocol errors due to an overly large buffer being allocated
8c80901
for GtkTextView. Enabling word wrapping and eliminating horizontal
8c80901
scrolling seems to prevent that from happening.
8c80901
8c80901
Cf. https://gitlab.gnome.org/GNOME/gtk/issues/1143
8c80901
8c80901
https://bugzilla.redhat.com/show_bug.cgi?id=1815544
8c80901
---
8c80901
 src/gui-wizard-gtk/wizard.glade | 1 +
8c80901
 1 file changed, 1 insertion(+)
8c80901
8c80901
diff --git a/src/gui-wizard-gtk/wizard.glade b/src/gui-wizard-gtk/wizard.glade
8c80901
index e86fc90b..f7782ba2 100644
8c80901
--- a/src/gui-wizard-gtk/wizard.glade
8c80901
+++ b/src/gui-wizard-gtk/wizard.glade
8c80901
@@ -705,6 +705,7 @@
8c80901
                     <property name="expand">True</property>
8c80901
                     <property name="visible">True</property>
8c80901
                     <property name="editable">False</property>
8c80901
+                    <property name="wrap-mode">word</property>
8c80901
                   </object>
8c80901
                 </child>
8c80901
               </object>
8c80901
-- 
8c80901
2.25.1
8c80901