From 8fe810590d89ee6d1445c194b8346541ce595b42 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Mon, 19 May 2008 20:15:30 +0000 Subject: [PATCH] [232355] TVT34:TCT241: TVT FR - Go To menu item missing + Tooltip description for Go Into to be changed https://bugs.eclipse.org/bugs/show_bug.cgi?id=232355 --- .../internal/ui/actions/SystemCascadingGoToAction.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/actions/SystemCascadingGoToAction.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/actions/SystemCascadingGoToAction.java index e06533b8bfb..cdc177ce962 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/actions/SystemCascadingGoToAction.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/actions/SystemCascadingGoToAction.java @@ -12,7 +12,7 @@ * Emily Bruner, Mazen Faraj, Adrian Storisteanu, Li Ding, and Kent Hawley. * * Contributors: - * {Name} (company) - description of contribution. + * David Dykstal (IBM) - [232355] Go To menu item missing *******************************************************************************/ package org.eclipse.rse.internal.ui.actions; @@ -50,9 +50,10 @@ public class SystemCascadingGoToAction extends SystemBaseSubMenuAction { super(SystemResources.ACTION_CASCADING_GOTO_LABEL, SystemResources.ACTION_CASCADING_GOTO_TOOLTIP, shell); setMenuID(ISystemContextMenuConstants.MENU_GOTO); - this.fSystemViewPart = systemViewPart; - setCreateMenuEachTime(false); - setPopulateMenuEachTime(false); + this.fSystemViewPart = systemViewPart; + // something in ganymede m7 causes the actions of this menu to be lost, therefore must re-create each time + setCreateMenuEachTime(true); + setPopulateMenuEachTime(true); allowOnMultipleSelection(false); setContextMenuGroup(ISystemContextMenuConstants.GROUP_GOTO); }