From 355736cceb508935266d38eb3094050dd95477f7 Mon Sep 17 00:00:00 2001 From: Gra Date: Fri, 24 Apr 2009 14:07:11 +0200 Subject: [PATCH] Splitted a string to fit in 79 columns. --- tooltip.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tooltip.py b/tooltip.py index 34d5fe2..a35c241 100644 --- a/tooltip.py +++ b/tooltip.py @@ -204,7 +204,8 @@ def demo(): l = Tkinter.Listbox(root) l.insert('end', "I'm a listbox") l.pack(side='top') - t1 = ToolTip(l, follow_mouse=1, text="I'm a tooltip with follow_mouse set to 1, so I won't be placed outside my parent") + t1 = ToolTip(l, follow_mouse=1, text="I'm a tooltip with follow_mouse set " + "to 1, so I won't be placed outside my parent") b = Tkinter.Button(root, text='Quit', command=root.quit) b.pack(side='bottom') t2 = ToolTip(b, text='Enough of this') -- 2.45.1