Relative Content

Tag Archive for pysimplegui

Setting PySimpleGUI.Text() element’s height causes text update to botch

I have a PySimpleGUI.Text() element that I’d like to update with text as my program executes. I want it to be five lines high. It will be contained in another element, so I do not want to set its width explicitly. Instead, I set expand_x = True so that it fills its available space horizontally. Thus, to set its size, I use size=(None,5).