PySimpleGUI
PySimpleGUI
I'm struggling with autoscrolling when appending output once again. Here's my `update` method. It's called when the user wants to output to a scrolling `MultilineOutput` element. ```python def Update(self, value=None,...
Yes, the one checked into the master branch http://www.PySimpleGUI.com is what I'm running.
Hmmm... I'm unsure about the line of code: ```python self.Autoscroll = autoscroll is True # convert to bool and save the autoscroll setting ``` I would have never written that...
Oh crap... it was a bug in my code! What the heck happened??? Wow... I'm sorry to have sent this your direction. I'm confused now and will track down what...
 I appear to have made the bug when I poured some 900 additions to the file! DOH! I'm sorry this one is on me. I don't know why I...
This is the way the code should have read: ```python autoscroll = self.Autoscroll if autoscroll is None else autoscroll ``` and then referenced down further ```python if hasattr(app, "websockets"): app.execute_javascript(...
OMG! It works! It works! It works! It works! It works! It works! It works! It works! It works! It works! It works! It works! It works! It works! It...
Dang! It's working great when the image is being "updated", but it's no longer working when the initial image is provided and not changed using an update method. It's the...
It was flicker free for sure running the webcam program. Try out the 4 line program using PySimpleGUIWeb.py from the GitHub (http://www.PySimpleGUI.com) and you'll see it **appears** to be flicker...
@dddomodossola To see the new problem, if you run this you'll see 2 spots for images at the top of the page that show the image is missing: ```python import...