From 7d4e097be8d63e5c81ce443f93fcb89dda5e25b1 Mon Sep 17 00:00:00 2001 From: CakeAndBanana Date: Sun, 19 Oct 2025 21:58:12 +0200 Subject: [PATCH] Added nsfw on syncshell profile. --- LightlessSync/UI/SyncshellAdminUI.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/LightlessSync/UI/SyncshellAdminUI.cs b/LightlessSync/UI/SyncshellAdminUI.cs index 4c1feb8..d019366 100644 --- a/LightlessSync/UI/SyncshellAdminUI.cs +++ b/LightlessSync/UI/SyncshellAdminUI.cs @@ -359,6 +359,10 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase { UiSharedService.TextWrapped(_descriptionText); } + var nsfw = profile.IsNSFW; + ImGui.BeginDisabled(); + ImGui.Checkbox("Is NSFW", ref nsfw); + ImGui.EndDisabled(); ImGui.EndChildFrame(); }