File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
External/Plugins/ProjectManager/Controls Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ public bool DisabledForBuild
106
106
get { return ! TestMovie . Enabled ; }
107
107
set
108
108
{
109
- BuildProject . Enabled = TestMovie . Enabled = ProjectMenu . AllItemsEnabled = ConfigurationSelector . Enabled = ! value ;
109
+ BuildProject . Enabled = TestMovie . Enabled = ProjectMenu . ProjectItemsEnabledForBuild = ConfigurationSelector . Enabled = ! value ;
110
110
EnableTargetBuildSelector ( ! value ) ;
111
111
}
112
112
}
@@ -249,6 +249,7 @@ public bool ProjectItemsEnabled
249
249
{
250
250
set
251
251
{
252
+ RunProject . Enabled = value ;
252
253
CloseProject . Enabled = value ;
253
254
TestMovie . Enabled = value ;
254
255
BuildProject . Enabled = value ;
@@ -258,6 +259,18 @@ public bool ProjectItemsEnabled
258
259
}
259
260
}
260
261
262
+ public bool ProjectItemsEnabledForBuild
263
+ {
264
+ set
265
+ {
266
+ RunProject . Enabled = value ;
267
+ CloseProject . Enabled = value ;
268
+ TestMovie . Enabled = value ;
269
+ BuildProject . Enabled = value ;
270
+ CleanProject . Enabled = value ;
271
+ }
272
+ }
273
+
261
274
public bool AllItemsEnabled
262
275
{
263
276
set
You can’t perform that action at this time.
0 commit comments