@@ -242,7 +242,7 @@ private void OnRepositorySettingsGUI()
242
242
{
243
243
GUILayout . Label ( GitRepositoryTitle , EditorStyles . boldLabel ) ;
244
244
245
- EditorGUI . BeginDisabledGroup ( isBusy ) ;
245
+ EditorGUI . BeginDisabledGroup ( IsBusy ) ;
246
246
{
247
247
newRepositoryRemoteUrl = EditorGUILayout . TextField ( GitRepositoryRemoteLabel + ": " + repositoryRemoteName , newRepositoryRemoteUrl ) ;
248
248
var needsSaving = newRepositoryRemoteUrl != repositoryRemoteUrl && ! String . IsNullOrEmpty ( newRepositoryRemoteUrl ) ;
@@ -519,7 +519,7 @@ private void OnGitIgnoreRulesGUI()
519
519
520
520
private void OnGitLfsLocksGUI ( )
521
521
{
522
- EditorGUI . BeginDisabledGroup ( isBusy || Repository == null ) ;
522
+ EditorGUI . BeginDisabledGroup ( IsBusy || Repository == null ) ;
523
523
{
524
524
GUILayout . BeginVertical ( ) ;
525
525
{
@@ -608,7 +608,7 @@ private void OnInstallPathGUI()
608
608
// Install path
609
609
GUILayout . Label ( GitInstallTitle , EditorStyles . boldLabel ) ;
610
610
611
- EditorGUI . BeginDisabledGroup ( isBusy || gitExecPath == null ) ;
611
+ EditorGUI . BeginDisabledGroup ( IsBusy || gitExecPath == null ) ;
612
612
{
613
613
// Install path field
614
614
EditorGUI . BeginChangeCheck ( ) ;
@@ -657,7 +657,7 @@ private void OnPrivacyGui()
657
657
658
658
GUILayout . Label ( PrivacyTitle , EditorStyles . boldLabel ) ;
659
659
660
- EditorGUI . BeginDisabledGroup ( isBusy || service == null ) ;
660
+ EditorGUI . BeginDisabledGroup ( IsBusy || service == null ) ;
661
661
{
662
662
var metricsEnabled = service != null ? service . Enabled : false ;
663
663
EditorGUI . BeginChangeCheck ( ) ;
@@ -677,7 +677,7 @@ private void OnLoggingSettingsGui()
677
677
{
678
678
GUILayout . Label ( DebugSettingsTitle , EditorStyles . boldLabel ) ;
679
679
680
- EditorGUI . BeginDisabledGroup ( isBusy ) ;
680
+ EditorGUI . BeginDisabledGroup ( IsBusy ) ;
681
681
{
682
682
var traceLogging = Logging . TracingEnabled ;
683
683
0 commit comments