PySimpleGUI
PySimpleGUI
The problem is that the class that implemented the Output element is no longer present. There are workarounds and this may be one where I should add a new feature...
Here's a short test harness to show the directly accessing the widget proposed above. ```python import PySimpleGUI as sg layout = [ [sg.Text('My Window')], [sg.Output(s=(30, 10), k='-OUT-')], [sg.Button('no wrap'), sg.Button('print'),...
The new 4.60.0.12 version on GitHub removes the need for adding the additional line of code to change the wrap. Both the Multiline Element and the Output element got a...
 Ugh! 8.6.12 is the gift that keeps on giving.... bugs... What a shame. And, once again, how brilliant you are Jason at finding the root cause of the problems...
The `bind_return_key` parameter is very descriptive in what it does. I'm literally binding the return key to the button. Focus shouldn't be required at all other than the window itself...
I believe this is the same behavior reported in this issue: https://github.com/PySimpleGUI/PySimpleGUI/issues/4880 tkinter 8.6.12 on the Mac has some issues, as well as some across all OS's.
Maybe "duplicate" is the wrong label and we need a new "probably related" label..... @jamesB32 your's is a bit more concerning since it's not quite the exact same use case.
A new label is born.... hoping Jason approves.
Hey @jamesB32 ... I want to thank you for being persistent in filing this issue. I saw you struggled with the Bot. I think I need to make it clearer...
Does the tab key move focus around the window once in this state? Wondering if it's a problem of clicking on the input field and it getting focus or something...