@@ -99,12 +99,18 @@ PropertyControlInfo CommonSettings(PropertyControlInfo p)
99
99
100
100
public override PropertyCollection OnCreateSavePropertyCollection ( )
101
101
{
102
- PropertyName [ ] targets = new PropertyName [ ]
102
+ PropertyName [ ] targets1 = new PropertyName [ ]
103
103
{
104
104
PropertyNames . PdnShape ,
105
105
PropertyNames . PdnShapeName
106
106
} ;
107
107
108
+ PropertyName [ ] targets2 = new PropertyName [ ]
109
+ {
110
+ PropertyNames . LowpassFilter ,
111
+ PropertyNames . GreymapScale
112
+ } ;
113
+
108
114
FluentPropertyCollection properties = new FluentPropertyCollection ( )
109
115
. AddStaticListChoice ( PropertyNames . ScanMode , ScanMode . Transparent )
110
116
. AddStaticListChoice ( PropertyNames . PreviewMode , PreviewMode . Fast )
@@ -127,7 +133,8 @@ public override PropertyCollection OnCreateSavePropertyCollection()
127
133
. AddDouble ( PropertyNames . Angle , 0 , 0 , 360 )
128
134
. AddUri ( PropertyNames . GitHubLink , MyPluginSupportInfo . Instance . WebsiteUri )
129
135
. AddUri ( PropertyNames . DiscussionLink , MyPluginSupportInfo . Instance . ForumUri )
130
- . WithReadOnlyRule ( targets , PropertyNames . ScanMode , ScanMode . Transparent , inverse : true )
136
+ . WithReadOnlyRule ( targets1 , PropertyNames . ScanMode , ScanMode . Transparent , inverse : true )
137
+ . WithReadOnlyRule ( targets2 , PropertyNames . HighpassFilter , 0 )
131
138
. WithReadOnlyRule ( PropertyNames . FillColor , PropertyNames . ScanMode , ScanMode . Opaque , inverse : true ) ;
132
139
return properties ;
133
140
}
0 commit comments