Fixed nsfwf

This commit is contained in:
CakeAndBanana
2025-10-19 21:59:04 +02:00
parent 7d4e097be8
commit e8760a8937

View File

@@ -265,6 +265,10 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
ImGui.EndChildFrame();
ImGui.TreePop();
}
var nsfw = _profileData.IsNsfw;
ImGui.BeginDisabled();
ImGui.Checkbox("Is NSFW", ref nsfw);
ImGui.EndDisabled();
}
ImGui.Separator();
@@ -359,10 +363,6 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
{
UiSharedService.TextWrapped(_descriptionText);
}
var nsfw = profile.IsNSFW;
ImGui.BeginDisabled();
ImGui.Checkbox("Is NSFW", ref nsfw);
ImGui.EndDisabled();
ImGui.EndChildFrame();
}