-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add jumping to mods in OnScreen tab.
- Loading branch information
1 parent
8b9f594
commit d7095af
Showing
5 changed files
with
73 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
using OtterGui.Services; | ||
using Penumbra.Interop.ResourceTree; | ||
using Penumbra.Services; | ||
|
||
namespace Penumbra.UI.AdvancedWindow; | ||
|
||
public class ResourceTreeViewerFactory( | ||
Configuration config, | ||
ResourceTreeFactory treeFactory, | ||
ChangedItemDrawer changedItemDrawer, | ||
IncognitoService incognito) : IService | ||
IncognitoService incognito, | ||
CommunicatorService communicator) : IService | ||
{ | ||
public ResourceTreeViewer Create(int actionCapacity, Action onRefresh, Action<ResourceNode, Vector2> drawActions) | ||
=> new(config, treeFactory, changedItemDrawer, incognito, actionCapacity, onRefresh, drawActions); | ||
=> new(config, treeFactory, changedItemDrawer, incognito, actionCapacity, onRefresh, drawActions, communicator); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters