From e8693ff96587d4ea435befb590bed7e7d04957e6 Mon Sep 17 00:00:00 2001 From: Christian Rotzoll Date: Wed, 3 Jul 2019 21:36:27 +0200 Subject: [PATCH] test button sizes --- home.admin/00infoLCDTK.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home.admin/00infoLCDTK.py b/home.admin/00infoLCDTK.py index 4883f8362..cc0a9f6dc 100644 --- a/home.admin/00infoLCDTK.py +++ b/home.admin/00infoLCDTK.py @@ -127,15 +127,15 @@ def main(): frame1.pack(side="left", fill="both", expand=True) # button 1 - no action yet (placeholder) - button1 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b1) + button1 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b1, height = 20, width = 20) button1.pack(pady=24) # button 2 - no action yet (placeholder) - button2 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b2) + button2 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b2, height = 30, width = 30) button2.pack(pady=24) # button 3 - no action yet (placeholder) - button3 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b3) + button3 = tk.Button(frame1, text='\u002d', fg='black', command=callback_b3, height = 15, width = 15) button3.pack(pady=24) #label3 = tk.Label(frame1, text='1.3', bg=COLOR, fg='white') #label3.pack(pady=24)