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()