Fix HeartSize property type in PrideOptions to double for improved precision
This commit is contained in:
@@ -255,7 +255,7 @@ public class OscarOptions {
|
|||||||
public class PrideOptions {
|
public class PrideOptions {
|
||||||
public bool EnablePride { get; set; } = true;
|
public bool EnablePride { get; set; } = true;
|
||||||
public int HeartCount { get; set; } = 20;
|
public int HeartCount { get; set; } = 20;
|
||||||
public int HeartSize { get; set; } = 1.5;
|
public double HeartSize { get; set; } = 1.5;
|
||||||
public bool ColorHeader { get; set; } = true;
|
public bool ColorHeader { get; set; } = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user