Limit amount of commands by 100
This commit is contained in:
@@ -222,7 +222,7 @@ class Fit(FitDeprecated):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def getCommandProcessor(cls, fitID):
|
def getCommandProcessor(cls, fitID):
|
||||||
if fitID not in cls.processors:
|
if fitID not in cls.processors:
|
||||||
cls.processors[fitID] = wx.CommandProcessor()
|
cls.processors[fitID] = wx.CommandProcessor(maxCommands=100)
|
||||||
return cls.processors[fitID]
|
return cls.processors[fitID]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user