Add builtinContextMenus package in gui

This commit is contained in:
cncfanatics
2010-10-01 12:17:18 +02:00
parent 72bb1bfcdc
commit 63913a309e

View File

@@ -0,0 +1,8 @@
__all__ = []
menus = {}
def registerMenu(menu):
menus[menu.name] = menu
def getMenu(name):
return menus[name]