|
From: <caw...@us...> - 2007-06-11 20:37:31
|
Revision: 2598
http://svn.sourceforge.net/rubyeclipse/?rev=2598&view=rev
Author: cawilliams
Date: 2007-06-11 13:37:30 -0700 (Mon, 11 Jun 2007)
Log Message:
-----------
fix Trac #4349 - Expand inner types by default in outline view
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyOutlinePage.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyOutlinePage.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyOutlinePage.java 2007-06-11 17:35:10 UTC (rev 2597)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/rubyeditor/RubyOutlinePage.java 2007-06-11 20:37:30 UTC (rev 2598)
@@ -384,7 +384,7 @@
Item i= (Item) node;
if (i.getData() instanceof IRubyElement) {
IRubyElement je= (IRubyElement) i.getData();
- if (je.getElementType() == IRubyElement.IMPORT_CONTAINER || isInnerType(je)) {
+ if (je.getElementType() == IRubyElement.IMPORT_CONTAINER) {
if (i != fReusedExpandedItem) {
setExpanded(i, false);
return;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|