diff --git a/Penumbra/UI/SettingsInterface.cs b/Penumbra/UI/SettingsInterface.cs index 2c9d0f34..67218ce7 100644 --- a/Penumbra/UI/SettingsInterface.cs +++ b/Penumbra/UI/SettingsInterface.cs @@ -632,10 +632,12 @@ namespace Penumbra.UI case "Single": { var code = conf[g.Key]; - if(ImGui.Combo(g.Value.GroupName, ref code, g.Value.Options.Select(x=>x.OptionName).ToArray(), g.Value.Options.ToArray().Length)) { - conf[g.Key] = code; - _plugin.ModManager.Mods.Save(); - _plugin.ModManager.CalculateEffectiveFileList(); + if(g.Value.Options.Count >1) { + if(ImGui.Combo(g.Value.GroupName, ref code, g.Value.Options.Select(x=>x.OptionName).ToArray(), g.Value.Options.ToArray().Length)) { + conf[g.Key] = code; + _plugin.ModManager.Mods.Save(); + _plugin.ModManager.CalculateEffectiveFileList(); + } } break; }