1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-19 14:15:50 +02:00

[233494] Show in Table Action should be removed from promptable filters

This commit is contained in:
David McKnight 2008-05-22 17:16:02 +00:00
parent 6a274a0a13
commit 5385856285

View file

@ -27,6 +27,7 @@
* David McKnight (IBM) - [210563] error messages need to be shown if incurred during filter expansion * David McKnight (IBM) - [210563] error messages need to be shown if incurred during filter expansion
* Martin Oberhuber (Wind River) - [218304] Improve deferred adapter loading * Martin Oberhuber (Wind River) - [218304] Improve deferred adapter loading
* David McKnight (IBM) - [232148] Invalid thread access exception from SystemViewFilterReferenceAdapter.internalGetChildren() * David McKnight (IBM) - [232148] Invalid thread access exception from SystemViewFilterReferenceAdapter.internalGetChildren()
* David McKnight (IBM) - [233494] Show in Table Action should be removed from promptable filters
*******************************************************************************/ *******************************************************************************/
package org.eclipse.rse.internal.ui.view; package org.eclipse.rse.internal.ui.view;
@ -750,7 +751,7 @@ public class SystemViewFilterReferenceAdapter
{ {
ISystemFilter filter = getFilter(element); ISystemFilter filter = getFilter(element);
ISubSystemConfiguration ssParentFactory = getSubSystemConfiguration(filter); ISubSystemConfiguration ssParentFactory = getSubSystemConfiguration(filter);
return ssParentFactory.showGenericShowInTableOnFilter(); return ssParentFactory.showGenericShowInTableOnFilter() && !filter.isPromptable();
} }
/** /**