NEW Technique... add a 1 pixel size(0,0) canvas to a row and the row will shrink when others made invisible
This commit is contained in:
parent
271ca7d662
commit
00c9e37300
2 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ def pin(elem):
|
|||
:param elem: the element to put into the layout
|
||||
:return: A column element containing the provided element
|
||||
'''
|
||||
return sg.Column([[elem]], pad=(0,0))
|
||||
return sg.Column([[elem, sg.Canvas(size=(0,0), pad=(0,0))]], pad=(0,0))
|
||||
|
||||
|
||||
layout = [ [sg.Text('Window with Hidden Button')],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue