Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 9481c9b

Browse files
Moving IsBusy to the bottom
1 parent c4d410f commit 9481c9b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/GitPathView.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,6 @@ public override void OnDataUpdate()
4848
MaybeUpdateData();
4949
}
5050

51-
public override bool IsBusy
52-
{
53-
get { return isBusy; }
54-
}
55-
5651
public override void OnGUI()
5752
{
5853
// Install path
@@ -282,5 +277,10 @@ private void ValidateAndSetGitInstallPath(string value)
282277

283278
}).Start();
284279
}
280+
281+
public override bool IsBusy
282+
{
283+
get { return isBusy; }
284+
}
285285
}
286286
}

0 commit comments

Comments
 (0)