State:Closed|icon_bug|database:public|icon_mari|Resolution:Fixed|TargetRelease:6.0v2|BugID:536366|
Problem summary
300+ actions are missing during startup, meaning hotkeys cannot be assigned to them during startup
Customer reported version
mari.6.0v1
Customer reported platform
windows10
Steps to reproduce
1) In your Mari/Scripts directory, make a new file called test.py
2) In the test.py file, add the following code and save the file:
import mariprint (len(mari.actions.list()))actionpath = '/Mari/NodeGraph/Create/Misc/Teleport Receiver'action = mari.actions.get(actionpath)action.setShortcut("R",mari.actions.NODE_GRAPH) print (len(mari.actions.list())) 
import marifrom PySide2.QtCore import QTimerQTimer.singleShot(0, lambda: print(len(mari.actions.list())))def setNodeGraphShortcut(shortcut, actionpath): action = mari.actions.get(actionpath) action.setShortcut(shortcut,mari.actions.NODE_GRAPH)actionpath = '/Mari/NodeGraph/Create/Misc/Teleport Receiver'QTimer.singleShot(0, lambda: setNodeGraphShortcut("R", actionpath)) We're sorry to hear that
Please tell us why