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

Commit 5fbc0fd

Browse files
Merge branch 'fixes/window-child-view-attach' into features/using-cache-manager
# Conflicts: # src/UnityExtension/Assets/Editor/GitHub.Unity/UI/HistoryView.cs # src/UnityExtension/Assets/Editor/GitHub.Unity/UI/Window.cs
2 parents 742a1a3 + f0f57cb commit 5fbc0fd

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,6 @@ public override void OnDataUpdate()
8484
MaybeUpdateData();
8585
}
8686

87-
public override void OnRepositoryChanged(IRepository oldRepository)
88-
{
89-
base.OnRepositoryChanged(oldRepository);
90-
gitPathView.OnRepositoryChanged(oldRepository);
91-
userSettingsView.OnRepositoryChanged(oldRepository);
92-
}
93-
9487
public override void Refresh()
9588
{
9689
base.Refresh();

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ public virtual void Finish(bool result)
4848
Parent.Finish(result);
4949
}
5050

51-
public virtual void OnRepositoryChanged(IRepository oldRepository)
52-
{}
53-
5451
protected IView Parent { get; private set; }
5552
public IApplicationManager Manager { get { return Parent.Manager; } }
5653
public IRepository Repository { get { return Parent.Repository; } }

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,6 @@ public override void OnRepositoryChanged(IRepository oldRepository)
134134
}
135135

136136
UpdateActiveTab();
137-
138-
if (ActiveView != null)
139-
ActiveView.OnRepositoryChanged(oldRepository);
140137
}
141138

142139
public override void OnSelectionChange()

0 commit comments

Comments
 (0)