Add option to pop out unlocks tab, add setting to stop hiding UI in cutscenes.

This commit is contained in:
Ottermandias 2023-09-23 00:40:36 +02:00
parent 5d41b97831
commit e2252066f1
4 changed files with 44 additions and 7 deletions

View file

@ -27,8 +27,9 @@ public class Configuration : IPluginConfiguration, ISavable
public bool HideApplyCheckmarks { get; set; } = false;
public bool SmallEquip { get; set; } = false;
public bool UnlockedItemMode { get; set; } = false;
public byte DisableFestivals { get; set; } = 1;
public byte DisableFestivals { get; set; } = 1;
public bool EnableGameContextMenu { get; set; } = true;
public bool HideWindowInCutscene { get; set; } = false;
public MainWindow.TabType SelectedTab { get; set; } = MainWindow.TabType.Settings;
public DoubleModifier DeleteDesignModifier { get; set; } = new(ModifierHotkey.Control, ModifierHotkey.Shift);