From d088550574b4a2fafb50259e3b7fdb1902d2218a Mon Sep 17 00:00:00 2001 From: RisaDev <151885272+RisaDev@users.noreply.github.com> Date: Mon, 7 Oct 2024 02:05:39 +0300 Subject: [PATCH] Separators --- .../UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs b/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs index f969ab2..fe4fbb8 100644 --- a/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs +++ b/CustomizePlus/UI/Windows/MainWindow/Tabs/Profiles/ProfilePanel.cs @@ -142,9 +142,15 @@ public class ProfilePanel return; DrawEnabledSetting(); + + ImGui.Separator(); + using (var disabled = ImRaii.Disabled(_selector.Selected?.IsWriteProtected ?? true)) { DrawBasicSettings(); + + ImGui.Separator(); + DrawTemplateArea(); } }