Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/codefolding
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv369/src/org/python/pydev/editor/codefolding
Modified Files:
PyEditProjection.java
Log Message:
Added Actions for collapse
Ctrl+- and Ctrl+=
Index: PyEditProjection.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/codefolding/PyEditProjection.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyEditProjection.java 19 Jul 2004 17:59:42 -0000 1.1
--- PyEditProjection.java 19 Jul 2004 19:18:44 -0000 1.2
***************
*** 67,72 ****
fProjectionSupport.install();
! if (isFoldingEnabled())
projectionViewer.doOperation(ProjectionViewer.TOGGLE);
} catch (Exception e) {
e.printStackTrace();
--- 67,73 ----
fProjectionSupport.install();
! if (isFoldingEnabled()){
projectionViewer.doOperation(ProjectionViewer.TOGGLE);
+ }
} catch (Exception e) {
e.printStackTrace();
|