Changed profile opening to use GroupData instead of full info, Added opening of syncshell profile from finder.
This commit is contained in:
@@ -434,7 +434,7 @@ public partial class EditProfileUi : WindowMediatorSubscriberBase
|
||||
|
||||
ImGui.Dummy(new Vector2(0f, 4f * scale));
|
||||
ImGui.TextColored(UIColors.Get("LightlessBlue"), "Saved Tags");
|
||||
var savedTags = _profileTagService.ResolveTags(_profileTagIds);
|
||||
var savedTags = ProfileTagService.ResolveTags(_profileTagIds);
|
||||
if (savedTags.Count == 0)
|
||||
{
|
||||
ImGui.TextDisabled("-- No tags set --");
|
||||
@@ -675,7 +675,7 @@ public partial class EditProfileUi : WindowMediatorSubscriberBase
|
||||
bool sortPayloadBeforeSubmit,
|
||||
Action<int[]>? onPayloadPrepared = null)
|
||||
{
|
||||
var tagLibrary = _profileTagService.GetTagLibrary();
|
||||
var tagLibrary = ProfileTagService.GetTagLibrary();
|
||||
if (tagLibrary.Count == 0)
|
||||
{
|
||||
ImGui.TextDisabled("No profile tags are available.");
|
||||
|
||||
Reference in New Issue
Block a user