Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21352/src/net/sourceforge/bprocessor/gui
Modified Files:
PopupMenu.java
Log Message:
added cylinder command
Index: PopupMenu.java
===================================================================
RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/PopupMenu.java,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** PopupMenu.java 22 Oct 2007 11:03:03 -0000 1.53
--- PopupMenu.java 22 Oct 2007 15:21:26 -0000 1.54
***************
*** 547,550 ****
--- 547,557 ----
};
menu.add(action);
+ action = new AbstractAction("Cylinder...") {
+ public void actionPerformed(ActionEvent event) {
+ Command command = new Command.Cylinder();
+ AttributeView.instance().display(command);
+ }
+ };
+ menu.add(action);
return menu;
}
|