You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to solve the delay of the custom button by inherit from GenButton class instead of Control. Here's a bit of the code:
`import wx
from wx.lib.buttons import GenButton
from wx.lib.newevent import NewCommandEvent
I managed to solve the delay of the custom button by inherit from GenButton class instead of Control. Here's a bit of the code:
`import wx
from wx.lib.buttons import GenButton
from wx.lib.newevent import NewCommandEvent
button_event, EVT_BUTTON = NewCommandEvent()
class Button(GenButton):
The text was updated successfully, but these errors were encountered: