convert to T before converting to T?
This commit is contained in:
@@ -34,7 +34,7 @@ public class SettingsValueOption<T> : ISettingsValueOptionValueAccessor where T
|
||||
object ISettingsValueOptionValueAccessor.ValueRaw
|
||||
{
|
||||
get => value;
|
||||
set => this.value = (T?)value;
|
||||
set => this.value = (T?)(T)value;
|
||||
}
|
||||
|
||||
public virtual void Reset()
|
||||
|
||||
Reference in New Issue
Block a user