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

Commit 23c92e2

Browse files
Fixes needed after merge from master
1 parent 4731a56 commit 23c92e2

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ namespace GitHub.Unity
1111
class LoadingView : Subview
1212
{
1313
private static readonly Vector2 viewSize = new Vector2(300, 250);
14+
private bool isBusy;
1415

1516
private const string WindowTitle = "Loading...";
1617
private const string Header = "";
@@ -25,5 +26,10 @@ public override void InitializeView(IView parent)
2526

2627
public override void OnGUI()
2728
{}
29+
30+
public override bool IsBusy
31+
{
32+
get { return false; }
33+
}
2834
}
2935
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ public override void OnSelectionChange()
9393
ActiveView.OnSelectionChange();
9494
}
9595

96+
public override bool IsBusy
97+
{
98+
get { return ActiveView.IsBusy; }
99+
}
100+
96101
public override void Finish(bool result)
97102
{
98103
OnClose.SafeInvoke(result);

0 commit comments

Comments
 (0)