From 6e989bed0151c03316b5c5488db16265ebde1441 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 1 Oct 2024 20:06:31 +0530 Subject: [PATCH] updated example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 57a580e..617779b 100644 --- a/README.md +++ b/README.md @@ -72,14 +72,14 @@ main.title("Main Window") timepicker = AnalogPicker(parent=main, type=constants.HOURS12) timepicker_theme = AnalogThemes(timepicker) timepicker_theme.setNavyBlue() -timepicker.place(x=80.66945161331148, y=145.9470669173186, width=250, height=350) +timepicker.place(x=80, y=145, width=250, height=350) map_viewer = tkintermapview.TkinterMapView(master=main) map_viewer.place(x=423, y=181, width=400, height=250) label = tk.Label(master=main, text="Sample text") label.config(bg="#E4E2E2", fg="#000") -label.place(x=83.81659218916774, y=69.66640453620676, width=130, height=46) +label.place(x=83, y=69, width=130, height=46) button = tk.Button(master=main, text="Click me") button.config(bg="#65ff4a", fg="#0b0909")