This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
src/UnityExtension/Assets/Editor/GitHub.Unity/UI Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,6 @@ public override void OnSelectionChange()
93
93
ActiveView . OnSelectionChange ( ) ;
94
94
}
95
95
96
- public override bool IsBusy
97
- {
98
- get { return ActiveView . IsBusy ; }
99
- }
100
-
101
96
public override void Finish ( bool result )
102
97
{
103
98
OnClose . SafeInvoke ( result ) ;
@@ -134,5 +129,10 @@ private PopupViewType ActiveViewType
134
129
get { return activeViewType ; }
135
130
set { activeViewType = value ; }
136
131
}
132
+
133
+ public override bool IsBusy
134
+ {
135
+ get { return ActiveView . IsBusy ; }
136
+ }
137
137
}
138
138
}
Original file line number Diff line number Diff line change @@ -97,11 +97,6 @@ public override void OnRepositoryChanged(IRepository oldRepository)
97
97
Refresh ( ) ;
98
98
}
99
99
100
- public override bool IsBusy
101
- {
102
- get { return isBusy || userSettingsView . IsBusy ; }
103
- }
104
-
105
100
public override void Refresh ( )
106
101
{
107
102
base . Refresh ( ) ;
@@ -464,5 +459,10 @@ private void OnLoggingSettingsGui()
464
459
}
465
460
EditorGUI . EndDisabledGroup ( ) ;
466
461
}
462
+
463
+ public override bool IsBusy
464
+ {
465
+ get { return isBusy || userSettingsView . IsBusy ; }
466
+ }
467
467
}
468
468
}
You can’t perform that action at this time.
0 commit comments