Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16496/src/net/sourceforge/bprocessor/gl/view
Modified Files:
PopupMenu.java
Log Message:
edit
Index: PopupMenu.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/PopupMenu.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** PopupMenu.java 22 Jan 2008 14:17:48 -0000 1.13
--- PopupMenu.java 23 Jan 2008 14:49:29 -0000 1.14
***************
*** 269,280 ****
Container sp = (Container)s.iterator().next();
! AbstractAction edit = new SpaceMenuAction(sp, "Edit") {
public void actionPerformed(ActionEvent arg0) {
- Selection.primary().clear();
- Project p = Project.getInstance();
space.edit();
- //FIXME: changed is also called in the edit-method on space
- //It is properly only needed once.
- p.changed(p);
}
};
--- 269,275 ----
Container sp = (Container)s.iterator().next();
! AbstractAction edit = new SpaceMenuAction(sp, "Detail") {
public void actionPerformed(ActionEvent arg0) {
space.edit();
}
};
|