Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Upton IV2009-01-29 04:49:23 +0000
committerFrancis Upton IV2009-01-29 04:49:23 +0000
commitee46ea64905d11a46ea1742300b580817dc6c0f9 (patch)
tree9d43813027a32faca78f3efc10bd2f5b77a4a259 /bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
parent73c37be09b674f44bc96075e363d8c849a6d9590 (diff)
downloadeclipse.platform.ui-ee46ea64905d11a46ea1742300b580817dc6c0f9.tar.gz
eclipse.platform.ui-ee46ea64905d11a46ea1742300b580817dc6c0f9.tar.xz
eclipse.platform.ui-ee46ea64905d11a46ea1742300b580817dc6c0f9.zip
bug 262606 [CommonNavigator] Up button after "go into" has bad tooltip text (mostly a hack until the real fix is done in JDT UI)
Diffstat (limited to 'bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java')
-rw-r--r--bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
index 6ac1f14ebb9..cb3407e15ad 100644
--- a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
+++ b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
@@ -157,7 +157,6 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
commonViewer = createCommonViewer(aParent);
commonViewer.setCommonNavigator(this);
- commonViewer.createFrameList();
try {
commonViewer.getControl().setRedraw(false);
@@ -184,7 +183,9 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
commonViewer.getControl().setRedraw(true);
}
- /*
+ commonViewer.createFrameList();
+
+ /*
* Create the CommonNavigatorManager last because information about the
* state of the CommonNavigator is required for the initialization of
* the CommonNavigatorManager

Back to the top