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 +3
-2
lines changed
src/UnityExtension/Assets/Editor/GitHub.Unity/UI Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class ChangesView : Subview
23
23
[ SerializeField ] private bool currentLocksHasUpdate ;
24
24
25
25
[ NonSerialized ] private GUIContent discardGuiContent ;
26
+ [ NonSerialized ] private bool isBusy ;
26
27
27
28
[ SerializeField ] private string commitBody = "" ;
28
29
[ SerializeField ] private string commitMessage = "" ;
@@ -39,7 +40,6 @@ class ChangesView : Subview
39
40
[ SerializeField ] private CacheUpdateEvent lastCurrentBranchChangedEvent ;
40
41
[ SerializeField ] private CacheUpdateEvent lastStatusEntriesChangedEvent ;
41
42
[ SerializeField ] private CacheUpdateEvent lastLocksChangedEvent ;
42
- [ SerializeField ] private bool isBusy ;
43
43
44
44
public override void OnEnable ( )
45
45
{
Original file line number Diff line number Diff line change @@ -372,6 +372,8 @@ public bool OnSelectionChange()
372
372
[ Serializable ]
373
373
class LocksView : Subview
374
374
{
375
+ [ NonSerialized ] private bool isBusy ;
376
+
375
377
[ SerializeField ] private bool currentStatusEntriesHasUpdate ;
376
378
[ SerializeField ] private bool currentLocksHasUpdate ;
377
379
[ SerializeField ] private bool currentUserHasUpdate ;
@@ -382,7 +384,6 @@ class LocksView : Subview
382
384
[ SerializeField ] private List < GitLock > lockedFiles = new List < GitLock > ( ) ;
383
385
[ SerializeField ] private List < GitStatusEntry > gitStatusEntries = new List < GitStatusEntry > ( ) ;
384
386
[ SerializeField ] private string currentUsername ;
385
- [ SerializeField ] private bool isBusy ;
386
387
[ SerializeField ] private GUIContent unlockFileMenuContent = new GUIContent ( Localization . UnlockFileMenuItem ) ;
387
388
[ SerializeField ] private GUIContent forceUnlockFileMenuContent = new GUIContent ( Localization . ForceUnlockFileMenuItem ) ;
388
389
You can’t perform that action at this time.
0 commit comments