From 7bb4e89a0d45617165b02dfd33d11cd9b336b799 Mon Sep 17 00:00:00 2001 From: CakeAndBanana Date: Sun, 7 Sep 2025 16:39:34 +0200 Subject: [PATCH] Added 1 and 3 option in the inactive setting. --- LightlessSync/UI/SyncshellAdminUI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LightlessSync/UI/SyncshellAdminUI.cs b/LightlessSync/UI/SyncshellAdminUI.cs index 90fbbaf..0eb0310 100644 --- a/LightlessSync/UI/SyncshellAdminUI.cs +++ b/LightlessSync/UI/SyncshellAdminUI.cs @@ -343,7 +343,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase + UiSharedService.TooltipSeparator + "Note: this check excludes pinned users and moderators of this Syncshell."); ImGui.SameLine(); ImGui.SetNextItemWidth(150); - _uiSharedService.DrawCombo("Days of inactivity", [7, 14, 30, 90], (count) => + _uiSharedService.DrawCombo("Day(s) of inactivity", [1, 3, 7, 14, 30, 90], (count) => { return count + " days"; }, @@ -364,7 +364,7 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase else { ImGui.AlignTextToFramePadding(); - UiSharedService.TextWrapped($"Found {_pruneTestTask.Result} user(s) that have not logged into Lightless in the past {_pruneDays} days."); + UiSharedService.TextWrapped($"Found {_pruneTestTask.Result} user(s) that have not logged into Lightless in the past {_pruneDays} day(s)."); if (_pruneTestTask.Result > 0) { using (ImRaii.Disabled(!UiSharedService.CtrlPressed()))