mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +02:00
[416550] filter rename does case-insensitive check against original
filter name -make sure filter is not readonly
This commit is contained in:
parent
32391805a2
commit
b896bfa678
1 changed files with 1 additions and 1 deletions
|
@ -903,7 +903,7 @@ public class SystemViewFilterReferenceAdapter
|
|||
if (fRef != null)
|
||||
{
|
||||
ISubSystemConfiguration factory = getSubSystemConfiguration(fRef.getReferencedFilter());
|
||||
if (factory.supportsDropInFilters())
|
||||
if (factory.supportsDropInFilters() && !fRef.getReferencedFilter().isNonChangable())
|
||||
{
|
||||
// if the drop is handled by the subsystem rather than this adapter, this will be true.
|
||||
if (factory.providesCustomDropInFilters())
|
||||
|
|
Loading…
Add table
Reference in a new issue