From 7a74089157f1c2f6441133807cd62d58a7f8f6f8 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Mon, 9 May 2022 17:00:35 -0400 Subject: [PATCH] Addition of SizeGrip element (makes resizing the window oh-so-nice! Also makes clear window is resizable) --- DemoPrograms/Browser_START_HERE_Demo_Programs_Browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DemoPrograms/Browser_START_HERE_Demo_Programs_Browser.py b/DemoPrograms/Browser_START_HERE_Demo_Programs_Browser.py index 406ea19f..9daa99c3 100644 --- a/DemoPrograms/Browser_START_HERE_Demo_Programs_Browser.py +++ b/DemoPrograms/Browser_START_HERE_Demo_Programs_Browser.py @@ -491,7 +491,7 @@ def make_window(): [choose_folder_at_top], # [sg.Column([[left_col],[ lef_col_find_re]], element_justification='l', expand_x=True, expand_y=True), sg.Column(right_col, element_justification='c', expand_x=True, expand_y=True)], [sg.Pane([sg.Column([[left_col],[ lef_col_find_re]], element_justification='l', expand_x=True, expand_y=True), sg.Column(right_col, element_justification='c', expand_x=True, expand_y=True) ], orientation='h', relief=sg.RELIEF_SUNKEN, k='-PANE-')], - [options_at_bottom]] + [options_at_bottom, sg.Sizegrip()]] # --------------------------------- Create Window --------------------------------- window = sg.Window('PSG Demo & Project Browser', layout, finalize=True, resizable=True, use_default_focus=False, right_click_menu=sg.MENU_RIGHT_CLICK_EDITME_VER_EXIT)