From a84a66a3444363f096b5ce2b3750a2674409dc44 Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Thu, 12 Oct 2023 16:55:46 +0200 Subject: [PATCH] Set no default key combination for Quick Bar --- Glamourer/Configuration.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Glamourer/Configuration.cs b/Glamourer/Configuration.cs index f7607b5..8c3b21d 100644 --- a/Glamourer/Configuration.cs +++ b/Glamourer/Configuration.cs @@ -39,8 +39,9 @@ public class Configuration : IPluginConfiguration, ISavable public bool ShowDesignQuickBar { get; set; } = false; public bool LockDesignQuickBar { get; set; } = false; public bool ShowQuickBarInTabs { get; set; } = true; + public bool LockMainWindow { get; set; } = false; - public ModifiableHotkey ToggleQuickDesignBar { get; set; } = new(VirtualKey.D, ModifierHotkey.Control, ModifierHotkey.Shift); + public ModifiableHotkey ToggleQuickDesignBar { get; set; } = new(VirtualKey.NO_KEY); public MainWindow.TabType SelectedTab { get; set; } = MainWindow.TabType.Settings; public DoubleModifier DeleteDesignModifier { get; set; } = new(ModifierHotkey.Control, ModifierHotkey.Shift);