From 79539e3db8999ccd0a7e78acea4cafdb976d7838 Mon Sep 17 00:00:00 2001 From: azyges Date: Sun, 21 Dec 2025 07:55:41 +0900 Subject: [PATCH] moderators will love this one --- LightlessSync/UI/LightFinderUI.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/LightlessSync/UI/LightFinderUI.cs b/LightlessSync/UI/LightFinderUI.cs index ca74bc9..22911cb 100644 --- a/LightlessSync/UI/LightFinderUI.cs +++ b/LightlessSync/UI/LightFinderUI.cs @@ -301,6 +301,14 @@ namespace LightlessSync.UI bool ShellFinderEnabled = _configService.Current.SyncshellFinderEnabled; bool isBroadcasting = _broadcastService.IsBroadcasting; + if (isBroadcasting) + { + var warningColor = UIColors.Get("LightlessYellow"); + _uiSharedService.DrawNoteLine("! ", warningColor, + new SeStringUtils.RichTextEntry("Syncshell Finder can only be changed while Lightfinder is disabled.", warningColor)); + ImGuiHelpers.ScaledDummy(0.2f); + } + if (isBroadcasting) ImGui.BeginDisabled();