Jason Yang

Results 301 comments of Jason Yang

It looks strange, but 4.60.1 - released version, old one 4.60.0.54 - non-released version, new one.

Issue found and not yet confirmed what situation it will happen. - Sometime, the event missed for the mouse button is released. - Not sure if it is related with...

With user binded events, the same, sometime button released event missed, and also some time button pressed event also missed. ```python from random import randint import PySimpleGUI as sg sg.theme("DarkBlue")...

With option `right_click_selects=True, right_click_menu=right_click_menu`, you can get the value for which row and which column you clicked. Save the row and column when the event for right click happened firstly,...

It looks much complex and something related your programming code, not like in the Table element. For Tree element, there's still no some options for Table element at this moment....

No method provided to edit the tree element directly. Maybe you can refer issue #4972

In my above demo code, you can find how to find which heading clicked, then sort your data to `TreeData` to update Tree element by yourselves. > Can the program...

It maybe presented by which element focused, you can call method `find_element_with_focus` of `Window`, like ```python element = window.find_element_with_focus() print(element) ```

You need to define a class with the method `draw_figure`, something like ```python class Something(): def __init__(self, *args, **kwargs): self.already_packed = {} def draw_figure(self, canvas, figure): """ Draw a matplotlib...