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

Commit 29d9b1c

Browse files
Adding missing IsBusy implementations
1 parent 08f450b commit 29d9b1c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,10 @@ public override void InitializeView(IView parent)
2525

2626
public override void OnGUI()
2727
{}
28+
29+
public override bool IsBusy
30+
{
31+
get { return false; }
32+
}
2833
}
2934
}

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)