Slightly increased size of of main frame if window not maximised

This commit is contained in:
2022-10-09 11:58:27 +02:00
parent c5f8bb9414
commit c704886717
+2 -2
View File
@@ -67,7 +67,7 @@ class HelmholtzGUI(Tk):
main_area = Frame(self, padx=10, pady=10) # create main area Frame where controls of each mode are displayed
main_area.pack(side="top", fill="both", expand=True) # pack main area at the top of the window
main_area.grid_rowconfigure(0, weight=1) # configure rows and columns of the Tkinter grid to expand with window
main_area.grid_rowconfigure(0, weight=5, minsize=800) # configure rows and columns of the Tkinter grid to expand with window
main_area.grid_columnconfigure(0, weight=1)
# initialize the GUI pages for the different modes and setup switching between them
@@ -2425,7 +2425,7 @@ class ConfigureLogging(Frame):
class StatusDisplay(Frame):
# status display to show information on test bench status in real time
# status display to show information on test bench status in real time # ToDo reduce height for small res screens
# noinspection PyUnusedLocal
def __init__(self, parent, controller):