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
Outspline cannot be executed for an indefinite time because when widgets are created (e.g. when opening an item's editor tab) they get a progressive ID which is limited by the system's maximum integer size, which would probably eventually raise an exception and crash the application.
Also the usage of wx.NewId() for e.g. accelerators is affected. Note that however menu items are limited by wxPython to a much lower ID range, but they are not created dynamically, so it shouldn't be a problem.
Of course on 64-bit systems we're talking about 2^63 possible IDs, which should be well enough to make a crash due to this as (or even less) likely as a crash of the whole system (or a simple manual reboot).
The text was updated successfully, but these errors were encountered:
Outspline cannot be executed for an indefinite time because when widgets are created (e.g. when opening an item's editor tab) they get a progressive ID which is limited by the system's maximum integer size, which would probably eventually raise an exception and crash the application.
Also the usage of
wx.NewId()
for e.g. accelerators is affected. Note that however menu items are limited by wxPython to a much lower ID range, but they are not created dynamically, so it shouldn't be a problem.Of course on 64-bit systems we're talking about 2^63 possible IDs, which should be well enough to make a crash due to this as (or even less) likely as a crash of the whole system (or a simple manual reboot).
The text was updated successfully, but these errors were encountered: