diff --git a/tools/Forge/Controller.m b/tools/Forge/Controller.m index e7051c673..9576bf044 100644 --- a/tools/Forge/Controller.m +++ b/tools/Forge/Controller.m @@ -212,6 +212,25 @@ action: @selector (paste:) keyEquivalent: @"v"]; + /* + BSP + */ + bsp = [[[NSMenu alloc] init] autorelease]; + [menu setSubmenu: bsp forItem: [menu itemWithTitle: @"BSP"]]; + + [bsp addItemWithTitle: @"dunno" + action: @selector (undo:) + keyEquivalent: @"z"]; + /* + Brush + */ + brush = [[[NSMenu alloc] init] autorelease]; + [menu setSubmenu: brush forItem: [menu itemWithTitle: @"Brush"]]; + + [brush addItemWithTitle: @"dunno" + action: @selector (undo:) + keyEquivalent: @"z"]; + /* Windows */