mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 13:05:22 +02:00
David McKnight (IBM) - [254614] Promptable filter's shouldn't require supportsCommands on the subsystem to be false
This commit is contained in:
parent
fc356e5aab
commit
cf7a0d9b03
1 changed files with 2 additions and 1 deletions
|
@ -31,6 +31,7 @@
|
|||
* David McKnight (IBM) - [238507] Promptable Filters refreshed after modifying filter strings
|
||||
* David McKnight (IBM) - [244824] filter not refreshed if child is "empty list" or system message node
|
||||
* David McKnight (IBM) - [249245] not showing inappropriate popup actions for: Refresh, Show In Table, Go Into, etc.
|
||||
* David McKnight (IBM) - [254614] Promptable filter's shouldn't require supportsCommands on the subsystem to be false
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.internal.ui.view;
|
||||
|
@ -316,7 +317,7 @@ public class SystemViewFilterReferenceAdapter
|
|||
final ISubSystemConfiguration ssf = SubSystemHelpers.getParentSubSystemConfiguration(referencedFilter);
|
||||
|
||||
// PROMPTING FILTER?...
|
||||
if (promptable && !ssf.supportsCommands())
|
||||
if (promptable)
|
||||
{
|
||||
final Object[] pchildren = new SystemMessageObject[1];
|
||||
final Object pelement = element;
|
||||
|
|
Loading…
Add table
Reference in a new issue