From fb6ed2ab5348ee4b80e70210f65c1c5ff243dd59 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Sun, 18 Dec 2016 00:13:51 -0800 Subject: [PATCH] narrow GrampsPreferences if possible (e.g. in Greek it is 1138) --- gramps/gui/configure.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gramps/gui/configure.py b/gramps/gui/configure.py index 5d260002b..e0394dd14 100644 --- a/gramps/gui/configure.py +++ b/gramps/gui/configure.py @@ -510,8 +510,9 @@ class GrampsPreferences(ConfigureDialog): grid.set_border_width(12) grid.set_column_spacing(6) grid.set_row_spacing(6) - self.add_text(grid, _('Enter your information so people can contact you when you' - ' distribute your Family Tree'), 0, line_wrap=False) + self.add_text(grid, _('Enter your information so people can contact ' + 'you when you distribute your Family Tree'), + 0, line_wrap=True) self.add_entry(grid, _('Name'), 1, 'researcher.researcher-name') self.add_entry(grid, _('Address'), 2, 'researcher.researcher-addr') self.add_entry(grid, _('Locality'), 3, 'researcher.researcher-locality')