From 084bf132217884c35763d315da1ce8f1a79274eb Mon Sep 17 00:00:00 2001 From: Malek Date: Sun, 31 Jan 2021 10:22:19 +0100 Subject: [PATCH] Update example_tooltip.py It seems the name of that feature has been changed from Tooltip to Balloon but the example was not updated. --- examples/example_tooltip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/example_tooltip.py b/examples/example_tooltip.py index 4f60c2d7..1a7b8f6c 100644 --- a/examples/example_tooltip.py +++ b/examples/example_tooltip.py @@ -2,12 +2,12 @@ # Copyright (c) RedFantom 2017 # For license see LICENSE -from ttkwidgets.frames import Tooltip +from ttkwidgets.frames import Balloon import tkinter as tk window = tk.Tk() button = tk.Button(window, text="Button", command=window.destroy) button.pack() -balloon = Tooltip(button) +balloon = Balloon(button) window.mainloop()