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
... by instantiating classes specified by _toolbar2_class or_toolmanager_toolbar_class. (Third-parties can still manuallyinstantiate their toolbars the old-fashioned way.)Note that this would read a bit nicer if the toolbar classes weredefined before the manager classes, as this would allow _toolbar2_classand _toolmanager_toolbar_class to be set using normal class attributes,but moving large chunks of code around did not seem worth it. I onlydid so for the macosx backend, where the moved code is very little.This means that all toolbars default to having the standard tools added,not just the interactive ones. See e.g. changes intest_toolbar_zoompan: it is no longer necessary to explicitly registerall the tools (this actually now emits a duplicate tool warning).This also moves the canonical storage of the toolbar on wx from theframe to the manager (keeping a proxy for backcompat), for consistencywith the other backends.