From 222525e035d0560f79ea48148706b8ff466475fc Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Wed, 9 Jan 2013 19:55:06 +0000 Subject: [PATCH] 6309: Wrap text in empty gramplet bar tab svn: r21047 --- gramps/gui/widgets/grampletbar.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gramps/gui/widgets/grampletbar.py b/gramps/gui/widgets/grampletbar.py index 26e2a37ae..db32d5dc8 100644 --- a/gramps/gui/widgets/grampletbar.py +++ b/gramps/gui/widgets/grampletbar.py @@ -313,6 +313,9 @@ class GrampletBar(Gtk.Notebook): tab_label.show() msg = _('Right-click to the right of the tab to add a gramplet.') content = Gtk.Label(label=msg) + content.set_alignment(0, 0) + content.set_line_wrap(True) + content.set_size_request(150, -1) content.show() self.append_page(content, tab_label) return content