PySimpleGUI

Results 1145 comments of PySimpleGUI

Hardcoding a size on the canvas doesn't make sense since you're wanting expansion. I don't recommend hard-coding anything.

> Looking forward if you have any solutions for retaining the same DPI even after the plot I don't have one.

Screenshot 2 The problem I see in Screenshot 2 is that in order to fill the space, the element/graph/item need to be able to be "stretched" in one direction, the...

## `SizeGrip` tip If you find that you're manually resizing the window often, you may like having a `SizeGrip` on your window. I simply added one to the last row...

I learned that some tkinter versions work better than others with images.

I do not believe it is fixed. There is no mention in the release notes at the top of the PySimpleGUI file of a leak. I'll look more closely to...

You always want to specify the theme before the layout. The theme defines the colors that the layout uses. If you set a theme, for example, then it sets the...

If you want the return key to act like a button press, then you have to add that logic yourself. It's the SPACE BAR that tkinter uses to indicate a...

@jason990420 is this still considered to be a bug in your opinion?

> The real job done by Input element. That's correct. The `bind_return_key` is meant to specify which Button will be pressed when return is pressed on the input element. It...