Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Jul 24, 2024
1 parent 74d7d46 commit 0324c4e
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/OneWare.Settings/Setting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,12 @@ public TextBoxSetting(string title, string description, object defaultValue, str

public class ComboBoxSetting : TitledSetting
{
public ComboBoxSetting(string title, string description, object defaultValue, IEnumerable<object> options, bool isSearchable = false) : base(
public ComboBoxSetting(string title, string description, object defaultValue, IEnumerable<object> options) : base(
title, description, defaultValue)
{
Options = options.ToArray();
IsSearchable = isSearchable;
}

public bool IsSearchable { get; }

public object[] Options { get; }
}

Expand Down

0 comments on commit 0324c4e

Please sign in to comment.