mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-02 06:35:28 +02:00
[249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
This commit is contained in:
parent
e07a6c495c
commit
852606e6f8
1 changed files with 2 additions and 1 deletions
|
@ -64,6 +64,7 @@
|
|||
* David McKnight (IBM) - [187739] [refresh] Sub Directories are collapsed when Parent Directory is Refreshed on Remote Systems
|
||||
* David Dykstal (IBM) - [233530] Not Prompted on Promptable Filters after using once by double click
|
||||
* David McKnight (IBM) - [241744] Refresh collapse low level nodes which is expended before.
|
||||
* David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
|
||||
********************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view;
|
||||
|
@ -1017,7 +1018,7 @@ public class SystemView extends SafeTreeViewer
|
|||
if (singleSelection) {
|
||||
// dkm - first find out if the selection will have children
|
||||
// only add this action if there are children
|
||||
if (hasChildren)
|
||||
if (hasChildren && showOpenViewActions())
|
||||
{
|
||||
menu.appendToGroup(ISystemContextMenuConstants.GROUP_GOTO, goIntoAction);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue