[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view PopupMenu.java, 1.19, 1.20
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2008-02-18 14:58:45
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24538/src/net/sourceforge/bprocessor/gl/view Modified Files: PopupMenu.java Log Message: Commitski Index: PopupMenu.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/PopupMenu.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** PopupMenu.java 15 Feb 2008 13:48:04 -0000 1.19 --- PopupMenu.java 18 Feb 2008 14:58:44 -0000 1.20 *************** *** 823,827 **** AbstractAction action = new SpaceMenuAction(net, "Initialize Frame") { public void actionPerformed(ActionEvent e) { ! Command command = new Command.InitializeNet(space); AttributeView.instance().display(command); } --- 823,836 ---- AbstractAction action = new SpaceMenuAction(net, "Initialize Frame") { public void actionPerformed(ActionEvent e) { ! Command command = new Command.InitializeFrame(space); ! AttributeView.instance().display(command); ! } ! }; ! menu.add(action); ! } ! { ! AbstractAction action = new SpaceMenuAction(net, "Render Frame") { ! public void actionPerformed(ActionEvent e) { ! Command command = new Command.RenderFrame(space); AttributeView.instance().display(command); } |