From f14e79dbc165de03a61cc7bb9adea6a9c1648a17 Mon Sep 17 00:00:00 2001 From: Jack Ye <1160210343@qq.com> Date: Thu, 20 Mar 2025 17:41:11 +0800 Subject: [PATCH] Update Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs Co-authored-by: Yan Li --- Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs b/Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs index 6496a413f..e05c9a3f7 100644 --- a/Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs +++ b/Flow.Launcher.Core/Plugin/JsonRPCPluginSettings.cs @@ -183,8 +183,8 @@ namespace Flow.Launcher.Core.Plugin StackPanel? panel = null; FrameworkElement contentControl; - // If the type is textBlock, seperator or check box, we do not need to create a panel - if (type != "textBlock" && type != "seperator" && type != "checkbox") + // If the type is textBlock, separator, or checkbox, we do not need to create a panel + if (type != "textBlock" && type != "separator" && type != "checkbox") { // Create a panel to hold the label and description panel = new StackPanel