You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: csp/gitprojectsettings.csp
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,12 @@ body {
130
130
set settings.mappedItemsReadOnly = 0
131
131
}
132
132
133
+
if ($Get(%request.Data("generatedFilesReadOnly", 1)) = 1) {
134
+
set settings.generatedFilesReadOnly = 1
135
+
} else {
136
+
set settings.generatedFilesReadOnly = 0
137
+
}
138
+
133
139
134
140
set settings.compileOnImport = ($Get(%request.Data("compileOnImport", 1)) = 1)
135
141
set settings.decomposeProductions = ($Get(%request.Data("decomposeProductions", 1)) = 1)
@@ -502,6 +508,18 @@ body {
502
508
</div>
503
509
504
510
511
+
</div>
512
+
<div class="form-group row mb-3">
513
+
<label for="generatedFilesReadOnly" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top" title="When enabled, classes marked as generated (for example, by the IRIS compiler) are treated as read-only and cannot be edited from Studio/VS Code."><b> Treat Generated Files as Read-only</b></label>
<label for="compileOnImport" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top" title="If true, the Import All options will compile imported options using the configured pull event handler"><b>Compile Items on Import</b></label>
0 commit comments