summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2013-02-13 14:50:28 -0500
committerChris Lumens <clumens@redhat.com>2013-02-15 10:16:14 -0500
commit564124bc29408b2218e43c13048e9c0708d86441 (patch)
tree628ed92b6dc6a0620886a2f45bb3387e7c8f3800
parent2be7b184fff5ade98ed43b9abc1575ef172d3e82 (diff)
downloadanaconda-564124bc29408b2218e43c13048e9c0708d86441.tar.gz
anaconda-564124bc29408b2218e43c13048e9c0708d86441.tar.xz
anaconda-564124bc29408b2218e43c13048e9c0708d86441.zip
Fix up word wrap on the DetailedErrorDialog.
-rw-r--r--pyanaconda/ui/gui/spokes/lib/detailederror.glade2
-rw-r--r--pyanaconda/ui/gui/spokes/storage.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/pyanaconda/ui/gui/spokes/lib/detailederror.glade b/pyanaconda/ui/gui/spokes/lib/detailederror.glade
index f2f516403..a60d8c13f 100644
--- a/pyanaconda/ui/gui/spokes/lib/detailederror.glade
+++ b/pyanaconda/ui/gui/spokes/lib/detailederror.glade
@@ -22,6 +22,7 @@
<property name="margin_bottom">18</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">An unknown error occurred during installation. Details are below.</property>
+ <property name="wrap">True</property>
</object>
<packing>
<property name="expand">False</property>
@@ -39,6 +40,7 @@
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="editable">False</property>
+ <property name="wrap_mode">word</property>
<property name="cursor_visible">False</property>
<property name="buffer">detailedTextBuffer</property>
</object>
diff --git a/pyanaconda/ui/gui/spokes/storage.py b/pyanaconda/ui/gui/spokes/storage.py
index f8f7daa60..585440474 100644
--- a/pyanaconda/ui/gui/spokes/storage.py
+++ b/pyanaconda/ui/gui/spokes/storage.py
@@ -815,7 +815,7 @@ class StorageSpoke(NormalSpoke, StorageChecker):
def on_info_bar_clicked(self, *args):
if self.errors:
label = _("The following errors were encountered when checking your storage "
- "configuration. You can modify your storage layout\nor quit the "
+ "configuration. You can modify your storage layout or quit the "
"installer.")
dialog = DetailedErrorDialog(self.data, buttons=[_("_Quit"), _("_Modify Storage Layout")], label=label)