Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Fix for PR 25725

Overview ruler was not enabled when the C editor started up. 
Here's the patch:

Index: CEditor.java
===================================================================
RCS file:
/home/tools/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/CEdito
r.java,v
retrieving revision 1.10
diff -c -r1.10 CEditor.java
*** CEditor.java	29 Oct 2002 21:40:58 -0000	1.10
--- CEditor.java	5 Nov 2002 15:00:37 -0000
***************
*** 715,720 ****
--- 715,722 ----
  			startTabConversion();
  		if (isBracketHighlightingEnabled())
  			startBracketHighlighting();
+ 		if (isOverviewRulerVisible())
+ 			showOverviewRuler();
  
  
  	}


Back to the top